代码如下
Scanner scanner = new Scanner(System.in);
String str1 = scanner.nextLine();
String str2 = scanner.nextLine();
System.out.println(str1);
System.out.println(str2);
运行结果如下:
第四行输入错误,这里有一个bug。
测试用例
2017/9/7 0:0:0
2017/9/21 0:0:0
然后手动改成
2017/9/7 0:0:0
2017/9/21 0:1:0
运行错误
报什么错?打进断点看了么?