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?

In Visual Logic use console I/O?

To design a Visual Logic flowchart for the given program, you can follow these steps:

1. Start: Begin the flowchart.
2. Declare variables: Create a variable to hold the total sum of the ten numbers.
3. Initialize sum: Set the initial value of the sum variable to 0.
4. Prompt user: Display a message asking the user to enter a number.
5. Read input: Use the console I/O block to capture the user's input and store it in a variable.
6. Add number to sum: Add the entered number to the sum variable.
7. Increment counter: Create a counter variable to keep track of the number of times the program has asked for input. Increment this counter by 1.
8. Check counter value: Check if the counter value is less than 10. If so, go back to step 4. Otherwise, proceed to the next step.
9. Output sum: Print the value of the sum variable using console output.
10. Stop: End the flowchart.

Please note that Visual Logic is not a standard flowcharting language, but you can adapt the steps above to the available blocks and symbols in your Visual Logic tool.