Section 1.2---The "Disp" command
Section 1.2---The "Disp" command

Back to home

The Disp, or display command is one of the most basic commands. It tells the program to display something on the calculator screen. To display something, press [PRGM], then go to the "I/O" menu. Go down to "Disp" (third one down) and press enter. If you want to get this function faster, press [PRGM], {RIGHT ARROW}, [3].
Note:
These commands will not work if you yourself write them out. They can only be written from these menus.
You now need the program to know what to write. After the Disp command, put the number 123. This is telling the program to display 123. Your program should now look like this:
:Disp 123
and that's it. Now, quit the prgram editor ([2ND][DEL]). Press the [PRGM] button and go to program TEST and press enter. The screen should now say prgmTEST. This is how you run programs. Press enter again. It should say:
123
Done
The Done tells you that the program has finished.
Next, we'll learn how to have the program display words.
To display words, use the typical Disp command. Instead of putting a number, put quotes ([ALPHA][+]). Put whatever you want to say inside the quotes, and end it with another quote. For now, try putting in "Hello World!" (For the exclamation mark, press [MATH][Right][Right][Right][4].) Run the program. It should look like this:
Hello World!
Done
You can also display variables such as Disp A and Disp Str2.

Section 1.3---The "Input" Command