Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
129630 | 黄俊然 | 所有不包含7的数 | C++ | Accepted | 1 MS | 276 KB | 466 | 2025-08-30 18:16:37 |
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main( ) { int n; cin>>n; for(int i=1;i<=n;i++) { int s=i/10%10; int g=i%10; int b=i/100; if (s!=7 && g!=7 && b!=7) { cout<<i<<" "; } } return 0; }