diff --git a/GASP/Sheet2/mathquiz.py b/GASP/Sheet2/mathquiz.py index b3b2760..fb3b86b 100644 --- a/GASP/Sheet2/mathquiz.py +++ b/GASP/Sheet2/mathquiz.py @@ -1,12 +1,15 @@ from random import randint -num1 = randint(1, 10) -num2 = randint(1, 10) +correct = 0 -question = f"What is {num1} times {num2}? " -answer = int(input(question)) +for qnum in range(1, 11): + num1 = randint(1, 10) + num2 = randint(1, 10) + question = f"What is {num1} times {num2}? " + answer = int(input(question)) -if answer == num1 * num2: - print("Yes, great work!") -else: - print(f"No, I'm afraid the correct answer it {num1 * num2}.") + if answer == num1 * num2: + print("Yes, great work!") + correct += 1 + else: + print(f"No, I'm afraid the correct answer it {num1 * num2}.")