Computer Science, asked by sujaldas8721, 2 days ago

Write a program to print the series: 0,2,4,6,8,10 and 12.​

Answers

Answered by sudhirnirmale82
0

Answer:

CLS

FOR i = 0 TO 12 STEP 2

PRINT i

NEXT i

END

Similar questions