Computer Science, asked by weplayroetogether123, 4 days ago

5. WAP to print first 10 odd numbers using FOR NEXT loop. 6. WAP to print the series : 3 6 9 12​

Answers

Answered by diwashkathariya17
0

Answer:

Cls

x=1

For i =1 to 10

print x

x=x+2

NEXT i

END

Similar questions