码迷,mamicode.com
首页 > 其他好文 > 详细

编程之美 2.4

时间:2018-04-13 12:09:58      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:pre   port   int   ring   actor   ati   main   style   输出   

输出1-N中包含1的数目:

import java.util.*;
public class Main{
    public static void main(String[] args) {
        int n=93;
        int factor=1;
        int res=0;
        while(n/factor!=0){
            int lowerNum=n-(n/factor)*factor;
            int curNum=(n/factor)%10;
            int highNum=n/(factor*10);
            if(curNum==0){
                res+=highNum*factor;
            }else if(curNum==1){
                res+=highNum*factor+lowerNum+1;
            }else{
                res+=(highNum+1)*factor;
            }
            factor=factor*10;
        }
        System.out.println(res);
    }
}

 

编程之美 2.4

标签:pre   port   int   ring   actor   ati   main   style   输出   

原文地址:https://www.cnblogs.com/xinyi-blog/p/8819375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!