| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128679 | 周民苡 | 满足条件的数 | C++ | Compile Error | 0 MS | 0 KB | 242 | 2025-08-19 11:56:53 |
#include<iostream> using namespace std; int main(){ int a,b,c,x=2; cin>>a>>b>>c; wlire(1){ if(x%a==x%b&&x%c==x%a) { cout<<x; } x++; } cout<<"hello"; return 0; }
Main.cc: In function 'int main()':
Main.cc:6:12: error: 'wlire' was not declared in this scope
wlire(1){
^
Main.cc:4:15: warning: unused variable 'x' [-Wunused-variable]
int a,b,c,x=2;
^