write a program in qbasic to.printbthe series 0,7,15,....n
Answers
Answered by
5
⇒CLS FOR I = 2 TO 20STEP 2 PRINT I; NEXT I END. FOR i = 1 TO 10 How do I write a program to calculate the sum of the first 10 even numbers in Java? cls for i = 2 to 20step 2 print i; next i end
A qbasic program to print even numbers within 1 to 10, A qbasic program to print even numbers within 1 to 10. PhalguniTutorials. Loading Duration: 2:23 Posted: Sep 15, 2018 Qbasic program to print odd numbers between 1 to 25 CLS FOR I = 1 TO 25 STEP 2 PRINT I; NEXT I END Qbasic program to check the entered number is EVEN or ODD.
Similar questions