Scanner
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();,为什么程序不会执行
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();,为什么程序不会执行
2015-10-19
举报