我想在 for 中从 stdin 获取输入
3
10 20 30
第一个数字是第二行中数字的数量。这是我得到的,但它卡在了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());
}
}
}