Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118080 | 何旻慧 | 07苹果和虫子 | C++ | Compile Error | 0 MS | 0 KB | 324 | 2025-04-23 19:07:14 |
#include <iostream> #include <cstdio> using namespace std; int main() { int n,x,y,; scanf("%d %d %d",&n,&x,&y); if(y%x==0){ cout<<n-(y/x)<<endl; } else if(n-(y/x)==0){ cout<<0; } else{ cout<<n-(y/x-y%x)<<endl; } return 0; }
Main.cc: In function 'int main()': Main.cc:5:15: error: expected unqualified-id before ';' token int n,x,y,; ^ Main.cc:6:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d %d %d",&n,&x,&y); ^