WAP to display all even numbers from 2 to 100 in descending order 10 mins QBasic Programming DECLARE SUB SERIES ( ) CLS CALL SERIES END SUB SERIES FOR I = 100 TO 2 STEP - 1 PRINT I, NEXT I END SUB WAP to display all odd numbers from 1 to 100 in descending order (Prev Lesson) (Next Lesson) WAP to display all natural numbers from 1 to 100 also display its sum Back to QBasic Programming No Comments Post a Reply Cancel reply
No Comments