write a QBASIC program to display sum of all even numbers from 1 to 20 using DO WHILE LOOP
Answers
Answered by
4
Explanation:
sum = 0
I = 1
while i>20:
if i%2==0:
sum+=1
I+=1
print(sum)
mark me as brainly
Similar questions
English,
3 months ago
Hindi,
6 months ago
Accountancy,
6 months ago
Social Sciences,
10 months ago
Biology,
10 months ago