Computer Science, asked by sumiwagle06, 3 days ago

To find Sum of squares of even numbers upto 50 in QBASIC ​

Answers

Answered by muksm
1

Explanation:

To print the sum of even numbers from 0 to 50.

CLS

s = 0

FOR i = 0 TO 50 STEP 2

s = s + i

NEXT i

PRINT "The sum of the numbers is "; s

END

Similar questions