WAP to generate the series .1,0.01,0.001,0.0001,0.00001 10 mins QBasic Programming DECLARE SUB SERIES () CLS CALL SERIES END SUB SERIES A = 1 FOR I = 1 TO 5 PRINT A / 10 ^ I NEXT I END SUB WAP to generate the series 50,46,41,35…………..7th terms (Prev Lesson) (Next Lesson) WAP to generate the series 0.00003,0.0003,,0.003,0.03,0.3 Back to QBasic Programming No Comments Post a Reply Cancel replyYou must be logged in to post a comment.
No Comments