我们想编写一个程序来求解两个"Ax2+Bx+C=0"
形式方程。
当方程的系数在Ax2+Bx+C=0
每个方程中输入 1 行时,它可能如下所示:
2 3 // linear equation when the coefficient for the term x2 is zero
4 5 6 // quadratic equation
nextInt() 不会告诉我们 4 是第一行的第三个数字还是第二行的第一个数字。也就是说,下面的输入将返回完全相同的信息。
2 3 4 // quadratic equation
5 6 // linear equation
两个输入也与2 3 4 5 6
for nextInt()没有什么不同
那么如何逐行扫描这些系数呢?