WAP to generate the following series 1,4,9…………..9th term 10 mins QBasic Programming DECLARE SUB SERIES () CLS CALL SERIES END SUB SERIES FOR I = 1 TO 9 PRINT I ^ 2 NEXT I END SUB WAP to generate the following series 11,3,14,17,31………….18th term (Prev Lesson) (Next Lesson) WAP to generate the following series 9,28,14,7,22,11…………..10th term Back to QBasic Programming No Comments Post a Reply Cancel reply
No Comments