| Ti-83 Basic | |
| The Basics 1.1: Getting Started 1.2: The "Disp" Command 1.3: The "Input" Command 1.4: Strings 1.5: If-Then Statements 1.6: "For" Loops 1.7: "While" Loops 1.8: The "Getkey" Command Creating Menus 2.1: Lbl and Goto Commands 2.2: The "Menu" Command Graphics 3.1: Setting up for Drawing 3.2: Graphing 3.3: Graph-Coordinates Drawing 3.4: Screen-Coordinates Drawing 3.5: Pictures 3.6: "Input" Revisited 3.6: Advanced Menus 3.8: Dynamic Menus 3.9: Dialog Boxes Miscellaneous 4.1: Memory Management 4.2: Creating Lists and Saved Games 4.3: Using with MirageOS 4.4: Tips and Hints | The "Disp" Command 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]. 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. |
![]() The text in this tutorial is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. | |

