Asked by JALUL

wRite a peudocode,algorithm and draw flowchart that display the sum of all even number between 0 and 100

Answers

Answered by Steve
don't ask much, do you?

n=0
sum=0
while n<100
  n += 2
  sum += n
end while
print sum
Answered by Mustefa
i need answer
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions