Find 1 8 7.. 10th terms. with qbasic method
pleas solve this question i will mark you as brainliest
Answers
Answered by
1
Explanation:
CLS
FOR i = 1 TO 10
PRINT i ^ 3
NEXT i
END
Using DO .... WHILE
CLS
c = 1
DO
PRINT c ^ 3
c = c + 1
LOOP WHILE c <= 10
END
Answered by
0
Explanation:
FOR i = 1 TO 10
PRINT i ^ 3
Using DO .... WHILE
CLS
c = 1
DO
PRINT c ^ 3
c = c + 1
LOOP WHILE c <= 10
please like and support me
mark me as brilliant
Similar questions