CLS
S=0
FOR I=1 TO 5
S=S*10+I
PRINT S
NEXT I
END
pls tell the out put.
Answers
Answered by
1
Program:
CLS
S=0
FOR I=1 TO 5
S=S*10+I
PRINT S
NEXT I
END
Output:
1
12
123
1234
12345
Similar questions