Computer Science, asked by ramaroy7753921128, 2 months ago

Display the output of the following program:
CLS
C = 3
D = C*2
START:
PRINT C,D
C = C + 2
IF C<= 10 THEN GOTO START:
END​

Answers

Answered by khushiagarwal27611
2

Answer:

Output

3,6

5,10

7,14

9,18

Similar questions