Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1900 | 杨洋杰 | 所有不包含7的数 | C++ | Accepted | 0 MS | 260 KB | 429 | 2023-12-01 22:23:53 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n<10){ for(int i=1;i<=n;i++){ if((i-7)%10!=0) cout<<i<<" "; } return 0; } for(int i=1;i<=9;i++){ if((i-7)%10!=0) cout<<i<<" "; } for(int ii=1;ii<=n;ii++){ if((ii/10)%7!=0&&(ii-7)%10!=0) cout<<ii<<" "; } return 0; }