//int n=sc.nextInt(); //出错 int n=Integer.parseInt(sc.nextLine()); //正确 for (int i=0;i<n;i++){}
大佬我做题时碰到这种情况是什么原因呢