为了账号安全,请及时绑定邮箱和手机立即绑定

为什么不适用于100.10.220.。等等 的整十的数

public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
for(count=0;count<10;count++){
   
num=num/10;
    if(num<=1){
      count++;
      break;
    }
}
        System.out.println("它是个"+count+"位的数!");
}
}

正在回答

2 回答

public class HelloWorld{
public static void main(String[] args){
int num = 999;
int count = 0;
for(count=0;count<10;count++){
   
num=num/10;
    if(num<=0){
      count++;
      break;
    }
}
        System.out.println("它是个"+count+"位的数!");
}
}

0 回复 有任何疑惑可以回复我~

public class HelloWorld{
public static void main(String[] args){
int num = 2364724;
        int count =0;
          for(;num>=1;){
              count++;
              num = num / 10;
          }

        System.out.println("它是个"+count+"位的数!");
}
}

你的逻辑有点问题 ,仔细想想就可以了!



0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么不适用于100.10.220.。等等 的整十的数

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信