WAP to display numbers 30,28.5,27,25.5…….9th terms 10 mins QBasic Programming DECLARE SUB SERIES () CLS CALL SERIES END SUB SERIES A = 30 FOR I = 1 TO 9 PRINT A, A = A – 1.5 NEXT I END SUB WAP to generate the following series 5,55,555,5555,55555 (Prev Lesson) (Next Lesson) WAP to generate the series 1,5.25,125…..10th terms Back to QBasic Programming No Comments Post a Reply Cancel replyYou must be logged in to post a comment.
No Comments