HotelInfantesAgres - Bawat tanong, may sagot. Logo

In Computer Science / Senior High School | 2025-08-10

Draw a flowchart that will add even numbers from 0 to 20 and display the the sum​

Asked by jalecomichael28

Answer (1)

Flowchart Steps:1. Start2. Initialize variables sum = 0, i = 03. Check condition: i <= 20 Yes: go to step 4No: go to step 64. Add even number to sum: sum = sum + i5. Increment i by 2: i = i + 2 → Go back to step 36. Display sum7. EndFlowchart Symbols to Use:Oval: Start / EndRectangle: Process (Initialize, Add, Increment)Diamond: Decision (Check if i <= 20)Parallelogram: Output (Display sum)

Answered by BrainlyModIsBusy | 2025-08-13