Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1896 | 杨洋杰 | 所有不包含7的数 | C++ | Wrong Answer | 0 MS | 268 KB | 323 | 2023-12-01 22:08:23 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n>=1&&n<=100){ cout<<1<<" "<<2<<" "<<3<<" "<<4<<" "<<5<<" "<<6<<" "<<8<<" "<<9<<" "; for(int i=1;i<=n;i++){ if((i-7)%10!=0 && (i/10)%7!=0) cout<<i<<" "; } } return 0; }
------Input------
8
------Answer-----
1 2 3 4 5 6 8
------Your output-----
1 2 3 4 5 6 8 9