learning-java-2825378 icon indicating copy to clipboard operation
learning-java-2825378 copied to clipboard

04 01b

Open Erdenebulgan19 opened this issue 5 years ago • 0 comments

package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { String question = "What is the largest planet in our solar system?"; String choiceOne = "Earth"; String choiceTwo = "Jupiter"; String choiceThree = "Saturn";

    String correctAnswer = choiceThree;
    System.out.println(question);
    System.out.println("Choose one of the following"  + choiceOne + " , " + choiceTwo + ", or " + choiceThree + ",");
    Scanner scanner = new Scanner(System.in);
    String input = scanner.next();
    if (correctAnswer.equals(input.toLowerCase())) {
        System.out.println("Congrats! That's the correct answer");
    } else {
        System.out.println("You are incorect. The correct answer is " + correctAnswer);
    }
}

}

Erdenebulgan19 avatar Jun 27 '20 16:06 Erdenebulgan19