1.

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

Answer» ONG>Answer:

CLS

FOR i = 0 TO 12 STEP 2

PRINT i

NEXT i

END



Discussion

No Comment Found