Computer Science, asked by scmahato15, 9 months ago


programs in GW Basic with simple output
program
WAP to print the first 50 odd numbers
using WHILE Loop.​

Answers

Answered by radiumboys
2

Answer:

10       CLS

20      FOR B = 2 TO 40 STEP 2

     30      PRINT B

     40      NEXT  B

     50      END

mark me as a brainleast

Explanation:

Similar questions