Help with programming a TI-84 Caculator

Thread Starter

codehunter447

Joined Sep 7, 2008
12
What would i have to enter in order to have a program that just displays what i typed into it on a TI-84 Plus Silver Edition Calculator? I don't want the calculator to solve them but to just display them on the screen when i turn on the program.
 
Last edited:
You could write a very simple program that would have you input what you like and then display it on the screen. Something like this should work.

:ClrHome
:Input "ENTER A NUMBER: ",N
: Disp "YOUR NUMBER WAS",N
:Stop


It's been quite some time since I've done any programming on the TI's and I was using an old school TI-85 lol.

That snippet came from this site, almost at the bottom.
http://odin.prohosting.com/mjs2k/tutorials/83b/part1.htm#04

Cheers! Hope that helps.
 
Top