已解决 关茂茂 修练者 题目链接: 酷町堂:1078 #include <iostream> using namespace std; int main(){ int n,x,y,s; cin>>n>>x>>y; if(y%x!=0){ if(n-y/x-1>=0){ cout<<n-y/x-1; }else{ cout<<0; } }else if(y%x==0){ if(n-x/y>=0){ cout<<n-y/x; }else{ cout<<0; } } return 0; } 大家看看我哪里错了