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

2 answers

don't ask much, do you?

n=0
sum=0
while n<100
  n += 2
  sum += n
end while
print sum
i need answer