如何在java中循环外部使用的while循环中更改变量

时间:2015-04-07 23:40:48

标签: java loops variables

(...)
int x = 1;
int y = 1;
System.out.println(x);

while ( y == 1)
{
 x = 2;
 y = y + 1;
}

如何更改System.out.println的x?

1 个答案:

答案 0 :(得分:1)

  

我写得很容易,但我想在while循环中更改x并在开头使用它

你做不到。您必须在 while循环之后将System.out.println行移至以使用新计算的值。