问题标题: 酷町堂:4021 分数比较大小 我哪里错了?

2
1
杨韵涵
杨韵涵
初级守护
初级守护

#include <iostream>
using namespace std;
int main(){
    int a,b,c,d; 
    cin>>a>>b>>c>>d;
    if(a/b>c/d){
        cout<<a<<" "<<b; 
    }else if(a/b<c/d){
        cout<<c<<" "<<d;
    }else{
            cout<<"same";
    }
    return 0;


1
张帆
张帆
中级天翼
中级天翼

整形除法结果只会取整

int a=3,b=2;
a/b=1;

 

1
陈正朔
陈正朔
初级光能
初级光能

a b c d要用double类型定义

0
陶明轩
陶明轩
中级守护
中级守护

#include<iostream>

#include<cstdio>

using namespace std;

int main(){

double a,b,c,d;

cin>>a>>b>>c>>d;

if(a/b>c/d){
cout<<a<<" "<<b;

} else if(a/b<c/d){

cout<<c<<" "<<d;

} else{ cout<<"same";

}

return 0;

}

0
陶明轩
陶明轩
中级守护
中级守护

#include<iostream>

#include<cstdio>

using namespace std;

int main(){

double a,b,c,d;

cin>>a>>b>>c>>d;

if(a/b>c/d){
cout<<a<<" "<<b;

} else if(a/b<c/d){

cout<<c<<" "<<d;

} else{ cout<<"same";

}

return 0;

}

0
谭迪元
谭迪元
资深光能
资深光能

作业,休想,老师上课讲了呀,看一楼。

0
0
0
0
0
0
0
我要回答