WAP to generate the series 1,4,7,10………….12th terms 10 mins QBasic Programming DECLARE SUB SERIES () CLS CALL SERIES END SUB SERIES A = 1 FOR I = 1 TO 12 PRINT A; A = A + 3 NEXT I END SUB WAP to generate the following series 9,28,14,7,22,11…………..10th term (Prev Lesson) (Next Lesson) WAP to generate the series 10,20,30………100 Back to QBasic Programming No Comments Post a Reply Cancel replyYou must be logged in to post a comment.
No Comments