Design a Visual Logic flowchart for a program that prompts the user to enter ten numbers one at a time. After the user has entered all ten number the program will then print out the total of those ten number and quit?

Respuesta :

n = 0 

1 read x 

n = n + 1 

print x 

If n > 1, go down to 2 

small = x 
large = x 

2 If x</= small, then small = x 
If x>/= large, then large = x 

If n < 12 , go back up to 1 

Print small 
Print large 
end
ACCESS MORE
EDU ACCESS