Write a program to drill elementary school students on addition, subtraction, multiplication or division. The program must allow students to select an operation from a menu, practice 5 randomly generated problems of that type using whole numbers, and keep score of the percentage they get correct. The program must use switch, random number generation and loops.
I have a java
Write a program to drill elementary school students on addition, subtraction, multiplication or division. The program must allow students to select an operation from a menu, practice 5 randomly generated problems of that type using whole numbers, and keep score of the percentage they get correct. The program must use switch, random number generation and loops.
Sample Output:
Sample output:
Please choose an operation to practice:
- Addition
- Subtraction
- Multiplication
- Division
- Quit
Enter the number of your choice: 4
2 x 8 = 16
Correct.
1 x 5 = 6
Incorrect. 1 x 5 = 5
6 x 4 = 24
Correct.
4 x 3 = 12
Correct.
7 x 8 = 48
Incorrect. 7 x 8 = 56
You got 60% of the problems correct.
Please choose an operation to practice:
- Addition
- Subtraction
- Multiplication
- Division
- Quit
Enter the number of your choice: 5
Goodbye.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images