Scanner sc=new Scanner(System.in);
int x=sc.nextInt();
double y=sc.nextDouble();
sc.nextLine();
String s=sc.nextLine();
为什么要另外写一句sc.nextLine();直接写String s=sc.nextLine();,为什么程序不会执行
没报错,但程序不能运行
有报错信息吗?