Difference between revisions of "TI-BASIC:SK:Summary Basics"
From Learn @ Cemetech
Jump to navigationJump to search (Initial automated import) |
(Automated internal link correction) |
||
Line 17: | Line 17: | ||
{{Template:TI-BASIC:Next-prev | {{Template:TI-BASIC:Next-prev | ||
− | |prevpage = | + | |prevpage = TI-BASIC:SK:Loops |
|prevtitle = Loops | |prevtitle = Loops | ||
− | |tocpage = | + | |tocpage = TI-BASIC:Starter_Kit |
|toctitle = Table of Contents | |toctitle = Table of Contents | ||
− | |nextpage = | + | |nextpage = TI-BASIC:SK:Exercises-basics |
|nexttitle = Chapter Exercises}}[[Category:TI-BASIC]] | |nexttitle = Chapter Exercises}}[[Category:TI-BASIC]] | ||
[[Category:TIBD]] | [[Category:TIBD]] |
Revision as of 00:46, 25 February 2016
- TI-Basic is the built-in programming language on all of TI's graphing calculators.
- When making programs, there is a general order that you follow: you create the program, then you edit the program, and finally you execute the program.
- A variable is a place where a number can be stored. Each of the letters A through Z (as well as the funky θ symbol, which is Greek and pronounced "theta") is a variable that can hold a number.
- Input happens when a program lets the person running it press a key or type something in, so that it can do something with that. Output happens when a program displays results on the screen.
- Control structures are instructions that explain which steps the calculator should follow, and in which order.
- The Goto command tells the calculator to go to another point (more specifically, a corresponding Lbl) in the program, and continue running it from there.
- Loops are a type of control structure used to repeat a block of code several times. There are two kinds of loops: a loop that repeats until a condition is satisfied and a loop that repeats a fixed number of times.
Commands Introduced
<< Loops | Table of Contents | Chapter Exercises >> |