第二题为什么这样答案不对啊?才对了33%? count是输入的数字        for(int i =0;i< 99999;i++){             if(count >= Math.pow(2,i) && count < Math.pow(2,i+1)){                 System.out.println((int)Math.pow(2,i));                 break;             }         }