Computer Science, asked by Unknownuser64, 4 months ago

WAP in QBASIC to calculate the sum of all the even numbers within 1 to 100​

Answers

Answered by Codestic
0

Answer:

CLS

CALL SERIES

END

SUB SERIES

FOR I = 1 TO 100

S = S + 1

NEXT

PRINT “SUM OF ALL NATURAL NUMBERS FROM 1 TO 100=”; S

END

Similar questions