私はこのコードを持っており、ユーザーによる次の入力を待つことになっている最初のときにスキップする面を除いて、すべてが私が望むように実行されています。コードは次のとおりです。
import java.util.Scanner;
public class mainThread {
public static int size;
public static int counter;
public static Scanner input = new Scanner(System.in);
public static String currentIn;
public static void main(String[] args){
System.out.println("Please type the desired amount of players: ");
size = input.nextInt();
String nameArray[] = new String[size];
for(int counter = 0; counter < size; counter++){
System.out.println("Please enter the name of player " + (counter+1));
currentIn = input.nextLine();
nameArray[counter] = currentIn;
System.out.println(nameArray[counter]);
}
}
}
コンソールの内容は次のとおりです。
Please type the desired amount of players:
3
Please enter the name of player 1
Please enter the name of player 2
Jacob
Jacob
Please enter the name of player 3
最初のループを完全にスキップし、理由がわからないようです。御時間ありがとうございます!