如何摆脱Java中的无限循环?

问题描述 投票:-1回答:1
public class checkdivi {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
         Scanner sc = new Scanner(System.in);
        if(sc.hasNext()){
            int T=sc.nextInt();
            int i=1;
            while(i <= T){
                int temp=T;

                    while((i%2) ==0 && (temp%2) ==0){
                            temp=temp/2;
                            i=i/2;
                            System.out.println("ok"+i);
                            if(i%2 !=0 || temp%2 !=0)
                                System.out.println("oh"+i);
                                break;                            
                        }               
                  System.out.println(""+i);
                  i=i+1;
                  System.out.println("yeah"+i);
            }                   
    }

}}

//当输入为12时,此代码将无限打印以下行。为什么i的值一次又一次变为1?

ok1
oh1
1
yeah2
java while-loop compiler-errors nested-loops infinite-loop
1个回答
0
投票

您正在将i设置为i/2,而不是在嵌套的while循环中使用临时变量,因此每次(i%2)==0 && (temp%2)==0时,它最终都会回退。因为最初将i设置为1,所以总是在i为2时发生。要解决此问题,请使用第二个临时变量存储i

© www.soinside.com 2019 - 2024. All rights reserved.