解题思路:
注意事项:
参考代码:
#include<vector>
#include<iostream>
#include<string>
#include<algorithm>
#include<cmath>
#include<cstdio>
#include<set>
using namespace std;
int main()
{
int n,t=0;
cin >> n;
for (int i = 1; i <= n; i++)
if (i % 7 == 0 || i % 10 == 7 || i / 10 % 10 == 7 || i / 100 % 10 == 7 || i / 1000 % 10 == 7 || i / 10000 % 10 == 7)
t++;
cout << t << endl;
return 0;
}
0.0分
0 人评分
C语言考试练习题_保留字母 (C语言代码)浏览:638 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:674 |
买不到的数目 (C++代码)浏览:909 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:1555 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:548 |
妹子杀手的故事 (C语言代码)浏览:1297 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:564 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:438 |
Tom数 (C语言代码)浏览:581 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:545 |