简单
2024-04-17 18:34:05
发布于:广东
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
double n,x,y;
cin>>n>>x>>y;
if(n-y/x<1) cout<<0;
else cout<<floor(n-(y/x));
return 0;
}
这里空空如也
有帮助,赞一个