1
ユーザーが選択肢1を選択して先に進んで選択肢2を選択するように強制します。 1
がで選ばれたまでオプション2の前にユーザーがオプション1を選択するようにします。
Scanner sc = new Scanner(System.in);
int[] ages = new int[3];
int choice;
do {
System.out.println("Average Age program");
System.out.println("Enter 1 to enter ages");
System.out.println("Enter 2 to calculate the average Age");
System.out.println("Enter 0 to Exit");
choice = sc.nextInt();
switch(choice) {
case 1:
acceptAges(ages);
break;
case 2:
averageAge(ages);
break;
default:
System.out.print("invalid option");
}
} while(choice != 0);
}
ロジックフローを維持することは可能ですが –