Computer Science, asked by sarkardebojyoti26, 4 months ago

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 atrs7391
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