Computer Science, asked by nikogori4, 6 months ago

III. Display the output of the following programs:
1.
CLS
P = 5
START:
PRINT P
P = P + 5
IF P <= 50 THEN GOTO START:
ENd

Answers

Answered by blackandantiqual
3

Answer:

It will print from 5, 6, 7, 8, 9, 10, 11, 12, 13, 14.......48, 49, 50

Explanation:

use while loop for this to simplify

Similar questions