for の stdin から入力を取得したい
3
10 20 30
最初の数値は、2 行目の数値の量です。ここに私が得たものがありますが、それはwhileループでスタックしています...だから私は信じています。デバッグモードで実行しましたが、配列に値が割り当てられません...
import java.util.*;
public class Tester {
public static void main (String[] args)
{
int testNum;
int[] testCases;
Scanner in = new Scanner(System.in);
System.out.println("Enter test number");
testNum = in.nextInt();
testCases = new int[testNum];
int i = 0;
while(in.hasNextInt()) {
testCases[i] = in.nextInt();
i++;
}
for(Integer t : testCases) {
if(t != null)
System.out.println(t.toString());
}
}
}