WAP to generate the series 10,20,30………100 10 mins QBasic Programming DECLARE SUB SERIES () CLS CALL SERIES END SUB SERIES A = 1 FOR I = 10 TO 100 STEP 10 PRINT I, NEXT I END SUB WAP to generate the series 1,4,7,10………….12th terms (Prev Lesson) (Next Lesson) WAP to generate the series 100,95,90…………………..10th term Back to QBasic Programming No Comments Post a Reply Cancel reply
No Comments