各位大侠,请看下面这段程序import java.util.Scanner;public class Main
{
public static void main(String args[]) throws Exception
{
Scanner cin=new Scanner(System.in);
int a=1,b=0;
while(cin.hasNext()&&(a!=0))
{
a=cin.nextInt();
b=cin.nextInt();
System.out.println(a+b);
}
}
}当运行Main ,输入 1 1,然后我就ctrl+c 结束了程序的运行,随后就跳出了系统关机的提示。请问这个是什么原因造成的?多谢赐教!!!!!