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

计算整数位数

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);
    }

}

}

全部评论

相关推荐

07-01 19:00
门头沟学院 Java
点赞 评论 收藏
分享
Java抽象带篮子:简历怎么写可以看看我发的帖子,你的第一个是实习经历吗?那怎么写的是你的第一个练手项目呢?简历写的怎么样直接投小厂面试一下就知道了
没有实习经历,还有机会进...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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