| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144627 | 张锦程 | 07苹果和虫子 | C++ | Compile Error | 0 MS | 0 KB | 298 | 2026-01-24 14:34:25 |
#include<iostream> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; int t=0; if(y%x==0) t=y/x; else if(y%x!=0) t=y/x+1; else if(x=0) t=0; if(n-t>=0) cout<<n-t<<endl; else cou<<0<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:11:16: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
else if(x=0)
^
Main.cc:16:9: error: 'cou' was not declared in this scope
cou<<0<