两个方法
2023-08-07 22:13:57
发布于:陕西
8阅读
0回复
0点赞
①:
#include<iostream>
using namespace std;
int main(){
int n,x,y,z=0;
cin>>n>>x>>y;
z=n-y/x;
if(y%x!=0){
z-=1;
}else{
z=z;
}
if (z<=0)
z=0;
cout<<z;
return 0;
}
——————————————————————————————分隔线——————————————————————————
②:
#include<iostream>
using namespace std;
int main(){
int n,x,y,z=0;
cin>>n>>x>>y;
if(y%x!=0)
z=n-y/x-1;
else
z=n-y/x;
if (z>0)
cout<<z;
else
cout<<0;
return 0;
}
这里空空如也
有帮助,赞一个