问题标题: 酷町堂:1230,90分

0
0
已解决
张马润泽
张马润泽
初级光能
初级光能
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
    double a,b;
    cin>>a>>b;
    if(a>b)
    cout<<a*a*a<<endl;
    if(a<b)
    cout<<b*b*b<<endl;
    if(a==b)
    cout<<b*b*b<<endl;
    return 0;
}  


0
已采纳
夏子健
夏子健
初级光能
初级光能

题目中说a,b必须是整数

0
0
夏子健
夏子健
初级光能
初级光能

if(a>b)
    {   s=a*a*a;
        cout<<s;
    }
    else if(b>a)
        {   s=b*b*b;
            cout<<s;
        }
    else {  s=a*a*a;
            cout<<s;
       
}
 

0
潘孝宇
潘孝宇
初级光能
初级光能

double a,b;

换成:

int a,b;

我要回答