Some more programs for TI-84 Calculator
|
|
| DO NOT TRY THIS AT HOME : Rotteneggs.com text files and message bases are for INFORMATIONAL PURPOSES ONLY. DO NOT undertake any project based upon any information obtained from this or any other web site.We are not responsible for, nor do we assume any liability for, damages resulting from the use of any information on this site. |
|
|
|
(55 votes) Published: Dec 31, 2006 10:02 p.m. Viewed 291 times |
in this egg i will show you how to make
a program that counts
a program that if you have a lot of programs can be a guide to them
a program that changes temperatures from Fahrenheit to Celcius and the opposite
and a program to display a syntax error menu with options
------------------------------------------------------------------------------------------------------------
first the count program, this is a pretty short and easy program, it is really simple and very fast to create
:ClrHome
:0->F
:Lbl A
:ClrHome
:F+1->F
:Disp F
: (on this line you can put a bunch of sin( , tan( , cos( to slow down the counting)
:Goto A
------------------------------------------------------------------------------------------------------------
i call this program the Master Program because you can have links to all your other programs if you have a lot
:Menu("Choose","Program 1",A,"Program 2",B,"Program 3",C
(you can go up to seven and if you have more you can create a more option that opens up another menu)
:Lbl A
:prgm1
:Lbl B
:prgm2
:Lbl C
:prgm3
------------------------------------------------------------------------------------------------------------
I call this program temperature because it changes fahrenheit to celcuis and celcius to fahrenheit
:Menu("Choose","F-C",A,"C-F",B
:Lbl A
:ClrHome
:Prompt F
:(F-32)/1.8->C
:Disp C
:Stop
:Lbl B
:ClrHome
:Prompt C
:(C*1.8)+32->F
:Disp F
:Stop
------------------------------------------------------------------------------------------------------------
and finally a program to mess with other peoples calculators
:Lbl D
:ClrHome
:1->X
:While X=1
:Input "",A
:If A=4231
:Then
:ClrHome
:Stop
:End
:ClrHome
:Menu("ERR:SYNTAX","QUIT",B,"GOTO",C
:Lbl B
:Stop
:End
:Lbl C
:Goto D |
|
|
|

 | Dec 31, 2006 10:04 pm - for the master program, to make it show up when you turn on your calculator, goto APPS button scroll down to the app start-up and then click on it when it opens turn on the display and select program and then your master program and then select finish it will now show up when you turn on your calculator |

 | Dec 31, 2006 10:22 pm - Happy New Year dude what time is up there where you live? It’s 2007 here already, how abouyt you? |

 | Dec 31, 2006 10:25 pm - yah its 2007 here to! |

 | Dec 31, 2006 10:29 pm -
awesome, 5* on your egg |

 | Dec 31, 2006 11:04 pm - 2007~!!!!!!! |

 | J n 01, 2007 12:50 am - Hey u used the menu thing i showed u ;)
good job with that.
for my next short tutorial: how to slow down counting!!! u said 2 add sin(,cos(,tan( , and stuff like that to slow it down. here’s the "real" way and it takes less memory and space too!
right where you want to slow something down add this code:
=================== ==
:For(A,1,100)
: nd
======================
A is a variable, make sure nothing else is stored as A
**The # after A is the number it starts counting at
***The last # is the number it stops counting at -- add to this # and there will be more of a delay
=================== ==
And that’s my short tutorial for today :)
It’s that simple.
You could also use this for counting, say a program like this:
=============
:For& 40;A,1,100)
:Disp A
:ClrHome
:End
========= ===
This would show counting from 1 to 100, then stop the program. don’t forget that END!! the program wont work if u forget it.
~Cheesybobman
BTW 4*. These aren’t your best programs but you implemented my stuff :) |

 | Jan 01, 2007 12:51 am - o yea and i forgot to mention the "u can only have 7 menu items" thing, but u got it :) | |
|