-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubtruction_Quiz_Loop.java
More file actions
46 lines (36 loc) · 1.54 KB
/
Copy pathSubtruction_Quiz_Loop.java
File metadata and controls
46 lines (36 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import java.util.Scanner;
public class Subtruction_Quiz_Loop {
public static void main(String[] args) {
final int NUMBER_OF_QUESTIONS = 5;
int correctCount = 0;
int count = 0;
long startTime = System.currentTimeMillis();
String output = "";
Scanner input = new Scanner(System.in);
while (count < NUMBER_OF_QUESTIONS) {
int number1 = (int) (Math.random() * 10);
int number2 = (int) (Math.random() * 10);
if (number1 < number2) {
int temp = number1;
number1 = number2;
number2 = temp;
}
System.out.print(
"What is " + number1 + " - " + number2 + "? ");
int answer = input.nextInt();
if (number1 - number2 == answer) {
System.out.println("You are correct!\n");
correctCount++;
} else
System.out.println("Your answer is wrong.\n" + number1
+ " - " + number2 + " should be " + (number1 - number2) + "\n");
count++;
output += "\n" + number1 + "-" + number2 + "=" + answer +
((number1 - number2 == answer) ? " correct" : " wrong");
}
long endTime = System.currentTimeMillis();
long testTime = endTime - startTime;
System.out.println("Correct count is " + correctCount +
"\nTest time is " + testTime / 1000 + " seconds\n" + output);
}
}