如下代码:
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNextInt()){
int val = sc.nextInt();
System.out.println(val);
}
}
一直无法结束输入,尝试ctrl+c和ctrl+d都不行,搜了很多博文,搜到这篇博文:idea控制台scanner如何终止输入 | 航行学园
试了一下,ctrl+D果然可以。