Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1897 | 杨洋杰 | 所有不包含7的数 | C++ | Wrong Answer | 0 MS | 268 KB | 284 | 2023-12-01 22:16:57 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; 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) cout<<ii<<" "; } return 0; }
------Input------
8
------Answer-----
1 2 3 4 5 6 8
------Your output-----
1 2 3 4 5 6 8 9