WAP to display cube 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 ^ 3, NEXT I END SUB WAP to display all even numbers from 2 to 100 also display its sum (Prev Lesson) (Next Lesson) WAP to display square of all numbers from 1 to 50 Back to QBasic Programming No Comments Post a Reply Cancel reply
No Comments