Start
print "the sum of all even numbers is infinite"
end
Chat with our AI personalities
There are infinitely many even numbers and so the sum of all even numbers is infinity. The answer, therefore, is to write an algorithm whose only step is to output "Infinity" and then stop.
102
for (int i = 2; i < 10; i ++) printf("%d\n", i); You did say even and odd numbers between 1 and 10. That's allnumbers between 1 and 10.
sum = 0 for(n = 0; n <= 10; n += 2) sum += n;
1.start 2.n=1,s=0 3 compute s=s+n 4 compute n=n+1 5 check n<=10 go to step3 else go to step 7 6 display s 7 stop
write an algo to find the sum of even number from 1to n