WAP to generate the series 1,5.25,125…..10th terms 10 mins QBasic Programming DECLARE SUB SERIES () CLS CALL SERIES END SUB SERIES A = 1 FOR I = 1 TO 10 PRINT A, A = A * 5 NEXT I END SUB WAP to display numbers 30,28.5,27,25.5…….9th terms (Prev Lesson) (Next Lesson) WAP using to display 50,75,100,125,150 Back to QBasic Programming No Comments Post a Reply Cancel reply
No Comments