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