WAP to display square of all numbers from 1 to 50 10 mins QBasic Programming DECLARE SUB SERIES ( ) CLS CALL SERIES END SUB SERIES FOR I = 1 TO 50 PRINT I ^ 2, NEXT I END SUB WAP to display cube of all numbers from 1 to 50 (Prev Lesson) (Next Lesson) WAP to print the sum of the numbers between 2 to 50 Back to QBasic Programming No Comments Post a Reply Cancel reply
No Comments