WAP using to display first 19 even numbers 10 mins QBasic Programming DECLARE SUB SERIES ( ) CLS CALL SERIES END SUB SERIES A = 2 FOR I = 1 TO 19 PRINT A, A = A+ 2 NEXT I END SUB WAP using to display first 13 odd numbers (Prev Lesson) (Next Lesson) WAP to print the following series 9,7,5,….1 Back to QBasic Programming No Comments Post a Reply Cancel reply
No Comments