Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

Draw the flowchart for the following task: Please enter the lower limit: 4 Please enter the lower limit: 8 Summation is 30 -> 4 + 5 + 6 + 7 + 8 Average is 7.5 -> 30 / (8-4) Pseudocode

Draw the flowchart for the following task: 

Please enter the lower limit: 4 

Please enter the lower limit: 8 

Summation is 30 ->  4 + 5 + 6 + 7 + 8  

Average is 7.5 ->  30 / (8-4) 

Pseudocode 

Display “Please enter lower limit: “ 

input lower 

Display “Please enter upper limit: 

input upper 

counter <- lower 

sum <- 0 

While counter <= upper 

sum <- sum + counter     =====è sum +=counter 

counter <- counter + 1 ===è counter++ 

ENDWHILE  

Average <- sum /(upper –lower) 

Display sum 

Display Average  

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question