1. 程式人生 > 其它 >JZ-031-從 1 到 n 整數中 1 出現的次數

JZ-031-從 1 到 n 整數中 1 出現的次數

從 1 到 n 整數中 1 出現的次數

題目描述

求出1-13的整數中1出現的次數,並算出100-1300的整數中1出現的次數?為此他特別數了一下1~13中包含1的數字有1、10、11、12、13因此共出現6次,但是對於後面問題他就沒轍了。ACMer希望你們幫幫他,並把問題更加普遍化,可以很快的求出任意非負整數區間中1出現的次數(從1 到 n 中1出現的次數)。

題目連結: 從 1 到 n 整數中 1 出現的次數

程式碼

/**
 * 標題:從 1 到 n 整數中 1 出現的次數
 * 題目描述
 * 求出1~13的整數中1出現的次數,並算出100~1300的整數中1出現的次數?為此他特別數了一下1~13中包含1的數字有1、10、11、12、13因此共出現6次,
 * 但是對於後面問題他就沒轍了。ACMer希望你們幫幫他,並把問題更加普遍化,可以很快的求出任意非負整數區間中1出現的次數(從1 到 n 中1出現的次數)。
 * 題目連結:
 * https://www.nowcoder.com/practice/bd7f978302044eee894445e244c7eee6?tpId=13&&tqId=11184&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking
 */
public class Jz31 {

    public int numberOf1Between1AndN_Solution(int n) {
        int result = 0;
        for (int i = 1; i <= n; i++) {
            int num = i;
            while (num != 0) {
                if (num % 10 == 1) {
                    result++;
                }
                num = num / 10;
            }
        }
        return result;
    }

    public static void main(String[] args) {
        Jz31 jz31 = new Jz31();
        System.out.println(jz31.numberOf1Between1AndN_Solution(10));
    }
}

【每日寄語】 懂得感恩,是收穫幸福的源泉;懂得感恩,你會發現原來自己周圍的一切都是那樣的美好。