WAP to display 3,6,12,24………15th terms 10 mins QBasic Programming DECLARE SUB SERIES () CLS CALL SERIES END SUB SERIES A = 3 FOR I = 1 TO 15 PRINT A A = A * 2 NEXT I END SUB WAP to generate the following series 11111,1111,111,11,1 (Prev Lesson) (Next Lesson) WAP to display -30,-20,-10,0,10,……………20th terms Back to QBasic Programming No Comments Post a Reply Cancel replyYou must be logged in to post a comment.
No Comments