题解 | #统计输入正数个数#

计算整数位数

http://www.nowcoder.com/practice/07232b8720614f7ea185391d1a7206eb

import java.util.Scanner;

public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int num = scan.nextInt(); scan.close();

    //write code here......
    if (num<=0){
        System.out.println(num);
    }
    else {
        String str = String.valueOf(num);
        char[] chars = str.toCharArray();
        int count = chars.length;
        if(chars[0]=='0'){
            count--;
        }
        System.out.println(count);
    }

}

}

全部评论

相关推荐

用微笑面对困难:“独立负责”我看见这几个字就有点想笑说实话,其实你可以写成主动承担比较好
投了多少份简历才上岸
点赞 评论 收藏
分享
狸猫换offer:神通广大的互联网
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务