CLS
C = 3
D = C*2
START:
PRINT CD
C = C + 2
IF C<= 10 THEN GOTO START:
END
Answers
Answered by
2
Answer:
36 will be the output...
One mistake, you did not type END IF
Similar questions