Problem 1003 java的输入输出到底是什么样的。。。

ouyangshengduo | 2017-08-06 12:31:18Author
我用C++已经AC,同样的算法,用java加上hasNext就是 超时,不加外面的while循环输入就是WA,求解释
ouyangshengduo | 2017-08-06 12:32:12# 1
有 java 提交的同学能否告知一下 ,谢谢
15926275327 | 2017-08-06 12:48:15# 2
我的也这样,照着模板上面来。求Java大佬解释一下。
15926275327 | 2017-08-06 12:52:14# 3
//这是给的模板,用Java就超时,我觉得看看能不能在算法上面调优。 public class Main { public static void main(String args[]) { Scanner cin = new Scanner(System.in); int a, b; while(cin.hasNextInt()) { a = cin.nextInt(); b = cin.nextInt(); System.out.println(a + b); } } }
350053002 | 2017-08-06 20:11:55# 4
我的也是这样。。。多组数据真的没道理。。
MrZhaoZH | 2017-08-06 21:35:08# 5
我也是相当的揪心。本来准备用java的。。但是就是超时。后来改投c++门下了
kirivir | 2017-08-06 23:04:55# 6
要用其他的输入方法: 详见:http://blog.csdn.net/qq_16255321/article/details/39617267
ouyangshengduo | 2017-08-06 23:33:22# 7
感谢楼上的,真是这个问题