// Test #1 Welcome to my program Let's do some math! (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 0 Enter three numbers: 12 7 91 Numbers entered are: 12 7 91 Numbers are: 12 7 91 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 1 Largest number entered is: 91 Numbers are: 12 7 91 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 2 Sum is: 110 Numbers are: 12 7 91 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 3 Range is: 84 Numbers are: 12 7 91 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 4 Average is: 36.666666666666664 Numbers are: 12 7 91 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 5 Ascending is: The numbers in ascending order are: 7 12 91 Numbers are: 12 7 91 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 6 Have a nice day! //Test #2 Welcome to my program Let's do some math! (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 1 Cannot compute, numbers have not been entered (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 4 Cannot compute, numbers have not been entered (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 0 Enter three numbers: 65 23 41 Numbers entered are: 65 23 41 Numbers are: 65 23 41 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 4 Average is: 43.0 Numbers are: 65 23 41 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 9 Invalid choice. Please try again. Numbers are: 65 23 41 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 11 Invalid choice. Please try again. Numbers are: 65 23 41 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 0 Enter three new numbers: 54 7 12 Numbers entered are: 54 7 12 Numbers are: 54 7 12 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 1 Largest number entered is: 54 Numbers are: 54 7 12 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 2 Sum is: 73 Numbers are: 54 7 12 (0) Enter new numbers (1) Find the largest (2) Compute the sum (3) Compute the range (largest - smallest) (4) Compute the average (5) Print the numbers in ascending order (6) Quit Enter choice: 6 Have a nice day!