代码.docx
2023-08-25 08:55:02
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,x,y,chi=0;
cin>>n>>x>>y;
if(y%x==0){
chi=y/x;
}else{
chi=y/x+1;
}
if(n-chi<=0){
cout<<0;
}else{
cout<<n-chi;
}
return 0;
}
这里空空如也
有帮助,赞一个