A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
6
Task/Loops-For/BASIC/loops-for-1.bas
Normal file
6
Task/Loops-For/BASIC/loops-for-1.bas
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
for i = 1 to 5
|
||||
for j = 1 to i
|
||||
print "*";
|
||||
next j
|
||||
print
|
||||
next i
|
||||
6
Task/Loops-For/BASIC/loops-for-2.bas
Normal file
6
Task/Loops-For/BASIC/loops-for-2.bas
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
10 FOR i = 1 TO 5
|
||||
20 FOR j = 1 TO i
|
||||
30 PRINT "*";
|
||||
40 NEXT j
|
||||
50 PRINT
|
||||
60 NEXT i
|
||||
Loading…
Add table
Add a link
Reference in a new issue