Computer Science, asked by anushka07050, 2 months ago

program to print all even number from 0 to 10 in for next loop​

Answers

Answered by smosan75
33

CLS

FOR I=0 TO 10 STEP 2

PRINT I

NEXT I

END

Similar questions