10 CLS
20 REM ** PROGRAM TO PRINT NAME TEN TIMES ****
30 LPRINT '' PRINTING OF NAME TEN TIMES USING FOR ... NEXT STATMENT ''
40 LPRINT '' ===================================================''
50 FOR A=1 TO 10
60 LPRINT A , ''INAME''
70 NEXT A
80 END
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
View and moderate all "[CLOSED] BASIC Programs" comments posted by this user
Mark all as spam, and block user from posting to "Discussion"
10 CLS
20 REM* PROGRAM TO PRINT NAME TEN TIMES ***
30 LPRINT '' PRINTING OF NAME TEN TIMES USING FOR ... NEXT STATMENT''
View and moderate all "[CLOSED] BASIC Programs" comments posted by this user
Mark all as spam, and block user from posting to "Discussion"
10 CLS
20 REM ** PROGRAM TO PRINT NAME TEN TIMES ****
30 LPRINT '' PRINTING OF NAME TEN TIMES USING FOR ... NEXT STATMENT ''
40 LPRINT '' ===================================================''
50 FOR A=1 TO 10
60 LPRINT A , ''INAME''
70 NEXT A
80 END