您好我一直在尝试了几个小时了,从这个循环和continue因为已经见过我的病情一次。 我的应用程序几乎读线的意甲并对其进行分析,然后打印的变量声明。 的线条看起来怎么样的一个例子(在不包括在内):
- 10 C = 9 + 3
- 20 = C + 1
- 30打印Ç
- 40转到20
- 50月底
它的一切权利,当它到达40行转到行20如预期,但我想它去线50,因为已经就去排队40次。 这是我这部分的代码:
while(booleanValue)
{
if(aString.substring(0, 4).equals("goto"))
{
int chosenLine = Integer.parseInt(b.substring(5));
if(inTheVector.contains(chosenLine))
{
analizeCommands(inTheVector.indexOf(chosenLine));
i++;
}
else
{
System.ou.println("Line Was Not Found");
i++;
}
}
else if(aString.substring(0, 3).equals("end"))
{
System.out.println("Application Ended");
booleanValue = false;
}
}