Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95687 | 欧阳俊懿 | 所有不包含7的数 | C++ | Accepted | 1 MS | 272 KB | 244 | 2024-11-01 19:40:47 |
#include<iostream> using namespace std; int main() { int n,sum,a; cin>>n; for(int i=1;i<=n;i++) { if(i==7||i%10==7||i/10==7) { continue; } else{ cout<<i<<" "; } } cout<<endl; return 0; }