Computer Science, asked by vaibhavrajgulve, 6 months ago

write a QBASIC program to display sum of all even numbers from 1 to 20 using DO WHILE LOOP ​

Answers

Answered by RuwaisnZaid
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