Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118077 | 何旻慧 | 07苹果和虫子 | C++ | Compile Error | 0 MS | 0 KB | 562 | 2025-04-23 19:06:06 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; #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:11:15: error: expected unqualified-id before ';' token int n,x,y,; ^ Main.cc:16:20: error: lvalue required as left operand of assignment else if(n-(y/x)=0){ ^ Main.cc:12: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); ^