0
张清岩
资深守护
资深守护
if(y/x>n){
cout<<0;
}else if(y%x==0){
cout<<n-y/x;
}else{
cout<<n-y/x-1;
}
0
黄馨琦
初级守护
初级守护
- if(y%x!=0){
- s=y/x+1;
- }
- else{
- s=y/x;
- }
- if(n-s>0){
- 输出<<n-s;
- }
- else{
- 输出<<0;
- }
0
陶明轩
中级守护
中级守护
- #include <iostream>
- using namespace std;
- int main(){
- int x,y,n,a;
- cin>>n>>x>>y;
- if(y%x==0){ a=y/x;
- } else{ a=y/x+1;
- } if(a>=n){
- cout<<0;
- } else{
- cout<<n-a;
- }
- return 0;
- }
- 望采纳!
0
丁博扬
中级天翼
中级天翼
- 如果(n>=0&&n<=100&&x>=0&&x<=100&&y>=0&&y<=1000){
- 如果(n<=y/x){
- 输出0;
- }
- 如果(n>y/x){
- 如果(y%x!=0){
- 输出n-1-y/x;
- }
- 如果(y%x==0){
- 输出n-y/x;
- }
- }
- }
- 望采纳,谢谢
0
0
0
0
陶明轩
中级守护
中级守护
- #include <iostream>
- using namespace std;
- int main(){
- int x,y,n,a; cin>>n>>x>>y;
- if(y%x==0){ a=y/x;
- } else{ a=y/x+1;
0
0
0
0
0