Just wondering if any of you had any useful programs for a ti-83, 83+, or silver edition. Not really lookin for games, but I do want to see what YOU have made. Just curious.
Here's a couple i've made for kicks(don't write the stuff with asteriks by it or if it's italicized, it's hard to draw the same stuff from the calculator on the computer) :
*Solving Quadratic formulas -
:Input "A =",A
:Input "B =",B
:Input "c =",C
:B^2-4AC->D *Store in D(sto->)
:If D=0
:Then
Disp -b/(2A)
:Else
Disp (-b+square root(D))/(2A)
Disp (-b-square root(D))/(2A)
*Spoof Erase I made in class today -
:ClrHome
:Output(3,7,"delete memory?"
:for(V,1,500
:end
:Output(3,7,"yes=1"
:Output(4,7,"no=2"
Disp ""
Disp ""
Disp ""
Disp ""
Disp ""
:Input " Delete?:",A
:ClrHome
:Output(2,3,"deleting..."
:for(V,1,600
:End
:Output(2,15,"3"
:For(V,1,400
:End
:Output(3,15,"2"
:For(V,1,400
:End
:Output(4,15,"1"
:For(V,1,400
:End
:ClrHome
:Output(4,2,"memory cleared!"
:For(V,1,1000
:End
:ClrHome
:Output(4,1,"have a nice day!"
:For(V,1,2000
Here's a couple i've made for kicks(don't write the stuff with asteriks by it or if it's italicized, it's hard to draw the same stuff from the calculator on the computer) :
*Solving Quadratic formulas -
:Input "A =",A
:Input "B =",B
:Input "c =",C
:B^2-4AC->D *Store in D(sto->)
:If D=0
:Then
Disp -b/(2A)
:Else
Disp (-b+square root(D))/(2A)
Disp (-b-square root(D))/(2A)
*Spoof Erase I made in class today -
:ClrHome
:Output(3,7,"delete memory?"
:for(V,1,500
:end
:Output(3,7,"yes=1"
:Output(4,7,"no=2"
Disp ""
Disp ""
Disp ""
Disp ""
Disp ""
:Input " Delete?:",A
:ClrHome
:Output(2,3,"deleting..."
:for(V,1,600
:End
:Output(2,15,"3"
:For(V,1,400
:End
:Output(3,15,"2"
:For(V,1,400
:End
:Output(4,15,"1"
:For(V,1,400
:End
:ClrHome
:Output(4,2,"memory cleared!"
:For(V,1,1000
:End
:ClrHome
:Output(4,1,"have a nice day!"
:For(V,1,2000

Comment