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

don't ask much, do you?

n=0
sum=0
while n<100
  n += 2
  sum += n
end while
print sum

i need answer

Pseudocode:

1. Initialize a variable named "sum" to 0.
2. Iterate a loop from 0 to 100.
3. Check if the current number is even or divisible by 2.
4. If the number is even, add it to the "sum" variable.
5. Continue the loop until all the numbers from 0 to 100 have been checked.
6. Display the value of "sum" as the sum of all even numbers between 0 and 100.

Algorithm:

1. Start
2. Set "sum" to 0.
3. For "i" in the range from 0 to 100 do:
- If "i" is even, then add "i" to "sum".
4. Display the value of "sum" as the sum of all even numbers between 0 and 100.
5. End

Flowchart:

[start]--->[Initialize sum = 0]
|
V
FOR i in range 0 to 100
|
V
IF i is even?
|
V
[Add i to sum]
|
V
[Next i]
|
V
[Display sum]

Sure! Here's how you could write a pseudocode, algorithm, and draw a flowchart to display the sum of all even numbers between 0 and 100:

Pseudocode:
```
1. SET sum = 0 // Initialize sum to zero
2. FOR num = 0 to 100
3. IF num is even
4. sum = sum + num // Add num to the sum
5. END IF
6. END FOR
7. DISPLAY sum
```

Algorithm:
```
1. Initialize sum to zero
2. Iterate from num = 0 to 100
3. If num is divisible by 2 (i.e., num is even)
4. Add num to the sum
5. Display the sum
```

Flowchart:

```
+-------------------------+
| START |
+-------------------------+
| |
| Initialize sum |
| to zero |
| |
+-------------------------+
| |
| FOR num = 0 to 100 |
| +----------------+ |
| | Is num even? | |
| +----------------+ |
| |No |
| +----------------+ |
| | Continue loop | |
| +----------------+ |
| |
| |Yes |
| +-----------+ |
| | sum = sum + num | |
| +-----------+ |
| |
| END FOR |
| |
+-------------------------+
| |
| Display sum |
| |
+-------------------------+
| STOP |
+-------------------------+
```

This algorithm will calculate the sum of all even numbers between 0 and 100 and display the result.