这是我的老师提供的一些示例代码,我只是想运行它以查看输出是什么样,但是相反,我已经尝试了数小时来解决如何解决我不断收到的错误
class ComparingLoops2b
{
public static void main (String [] args)
{
int product = 1;
do
{
int next = In.inputInt ("Next value please");
if (next != -1)
{
product *= next;
}
}
while (next != -1);
}
}
错误在while行中,它说“下一个”不能解析为变量???