梦游神


私信TA

用户名:2214999

访问量:5709

签 名:

等  级
排  名 375
经  验 5179
参赛次数 3
文章发表 34
年  龄 0
在职情况 学生
学  校 山东
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include"iostream"
#include"stdio.h"
using namespace std;
int main() {
    int ans = 0;
    int n;
    cin >> n;
    for (int i = 1;i <= n;i++) {
        int b = i;
        while (b) {
            if (b % 10 == 1)
                ans++;
            b /= 10;
        }
    }
    cout << ans;
    return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »