WAP to generate the series 100,95,90…………………..10th term 10 mins QBasic Programming CLS CALL SERIES END SUB SERIES A = 100 FOR I = 1 TO 10 PRINT A; A = A - 5 NEXT I END SUB WAP to generate the series 10,20,30………100 (Prev Lesson) (Next Lesson) WAP to generate the series 1,8,27……………8th Back to QBasic Programming No Comments Post a Reply Cancel replyYou must be logged in to post a comment.
No Comments