WAP to generate the following series 2,4,6,8………….12th term 10 mins QBasic Programming DECLARE SUB SERIES ( ) CLS CALL SERIES END SUB SERIES A = 2 FOR I = 1 TO 12 PRINT A, A = A + 2 NEXT I END SUB WAP to generate the following series ½, 2/3, ¾……….15th term (Prev Lesson) (Next Lesson) WAP to generate the following series 2,3,5,8,13…………10th term Back to QBasic Programming No Comments Post a Reply Cancel reply
No Comments