#include <iostream> #include <cstring> #include <cstdio> #include <algorithm> using namespace std; using ll=long long; int res; bool check(int n) { int x=n; while(x>0) { int y=x%10; if(y==2||y==0||y==1||y==9) { return true; } else x/=10; } return false; } int main() { int n;cin>>n; for(int i=1;i<=n;i++) { if(check(i))res+=i; } cout<<res; return 0; }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:770 |
数组输出 (C语言代码)错误???浏览:602 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:790 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:584 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:863 |
简单的a+b (C语言代码)浏览:560 |
用筛法求之N内的素数。 (C++代码)浏览:754 |
分糖果 (C语言代码)浏览:980 |
输出九九乘法表 (C语言代码)浏览:1172 |