1 条题解

  • -1
    @ 2024-10-4 22:02:46

    参考答案:

    #include<iostream>
    #include<string>
    using namespace std;
    int main()
    {
        int n, temp, sum = 0, x;
        cin >> n >> x;
        for (int i = 1; i <= n; ++i)
        {
            temp = i;
            while (temp)
            {
                if (temp % 10 == x)
                    ++sum;
                temp /= 10;
            }
        }
        cout << sum << endl;
        return 0;
    }
    
    • 1

    信息

    ID
    5396
    时间
    1000ms
    内存
    256MiB
    难度
    9
    标签
    (无)
    递交数
    8
    已通过
    6
    上传者