Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Loops-While/TI-89-BASIC/loops-while-1.basic
Normal file
6
Task/Loops-While/TI-89-BASIC/loops-while-1.basic
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
Local i
|
||||
1024 → i
|
||||
While i > 0
|
||||
Disp i
|
||||
intDiv(i, 2) → i
|
||||
EndWhile
|
||||
7
Task/Loops-While/TI-89-BASIC/loops-while-2.basic
Normal file
7
Task/Loops-While/TI-89-BASIC/loops-while-2.basic
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
10 REM Loops/While
|
||||
20 LET I = 1024
|
||||
30 IF I <= 0 THEN GOTO 70
|
||||
40 PRINT I
|
||||
50 LET I = I / 2
|
||||
60 GOTO 30
|
||||
70 END
|
||||
Loading…
Add table
Add a link
Reference in a new issue