We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c58e22a commit 8e408e0Copy full SHA for 8e408e0
app/src/main/java/hexlet/code/Engine.java
@@ -16,7 +16,7 @@ public static void gameRun(String gameRules, String[][] questionsAndAnswers) {
16
for (String[] questionAndAnswer : questionsAndAnswers) {
17
String question = questionAndAnswer[0];
18
String answer = questionAndAnswer[1];
19
- System.out.println("Question " + question);
+ System.out.println("Question: " + question);
20
playerAnswer = input.next();
21
if (answer.equals(playerAnswer)) {
22
System.out.println("Correct!");
0 commit comments