このプログラムを if-else-if ステートメントから switch ステートメントに変換するのに問題があります。どんな助けでも大歓迎です。
import java.util.Scanner;
public class ifToSwitchConversion {
public static void main(String [] args) {
// Declare a Scanner and a choice variable
Scanner stdin = new Scanner(System.in);
int choice = 0;
System.out.println("Please enter your choice (1-4): ");
choice = stdin.nextInt();
if(choice == 1)
{
System.out.println("You selected 1.");
}
else if(choice == 2 || choice == 3)
{
System.out.println("You selected 2 or 3.");
}
else if(choice == 4)
{
System.out.println("You selected 4.");
}
else
{
System.out.println("Please enter a choice between 1-4.");
}
}
}