本帖最后由 詹继强 于 2013-10-30 14:21 编辑
class XunHuan3
{
public static void main(String[] args)
{
int x=1;
while(x<3)
{
System.out.print("A");
System.out.print("B");
}
x++;
if(x==3)
{
System.out.print("C");
}
}
}
为什么我把if循环里面的数值改成x==3之后 数据会无限循环呢?
如果改成这样的话又正常了!
class XunHuan3
{
public static void main(String[] args)
{
int x=1;
while(x<3)
{
System.out.print("A");
System.out.print("B");
}
x =x+1;
if(x==3)
{
System.out.print("C");
}
}
}
|