D
2023-09-24 15:50:58
发布于:广东
10阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int n,x,y,ans;
cin >> n >> x >> y;
if(y%x!=0){
ans= n-(y/x+1);
}else{
ans= n-y/x;
}
if(ans>0){
cout << ans;
}else{
cout << 0;
}
return 0;
}
这里空空如也
有帮助,赞一个