Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99580 | 刘佳宇 | 所有不包含7的数 | C++ | Compile Error | 0 MS | 0 KB | 326 | 2024-11-30 11:55:36 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ if(i==7){ continue; } else if(i%10==7){ continue; } else if(i%100/10==7){ continue; } cout<<i<<" "; }
Main.cc: In function 'int main()': Main.cc:18:5: error: expected '}' at end of input } ^