鱼C论坛

 找回密码
 立即注册
查看: 715|回复: 2

[已解决]求大佬帮我看看

[复制链接]
发表于 2021-2-2 01:57:03 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 英俊男孩建坤 于 2021-2-2 02:17 编辑
#include<iostream>

using namespace std;

int main(){
    int a ,b ,c,sum;

    cout <<"Enter three different integers:";
    cin >> a>> b>> c;
    sum = a+ b+ c;
    cout << "Sum is: "<< sum<< endl;
    cout <<"Average is: "<< sum /3<< endl;
    cout <<"Product is: "<< a*b*c<< endl;

    if (a>b>c){
        cout <<"The largest number is: "<< a<< endl;
        cout <<"The smallest number is: "<< c<< endl;
    }else if (a>c>b){
        cout <<"The largest number is: "<< a<< endl;
        cout <<"The smallest number is: "<< b<< endl;
    }else if (b>a>c){
         cout <<"The largest number is: "<< b<< endl;
         cout <<"The smallest number is: "<< c<< endl;
    }else if (b>c>a){
        cout <<"The largest number is: "<< b<< endl;
        cout <<"The smallest number is: "<< a<< endl;
    }else if(c>a>b){
        cout <<"The largest number is: "<< c<< endl;
        cout <<"The smallest number is: "<< b<< endl;
    }else{
        cout <<"The largest number is: "<< c<< endl;
        cout <<"The smallest number is: "<< a<< endl;
    }
   
    return 0;
}


为什么最后比较三个数字的大小部分不能正常运行  我无论如何输入数字就只会执行最后的else部分语句  并不会进行比较
最佳答案
2021-2-2 06:57:02
a>b>c这种语法有些想当然了,电脑不能识别
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-2-2 06:57:02 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
a>b>c这种语法有些想当然了,电脑不能识别
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2021-2-2 10:36:51 From FishC Mobile | 显示全部楼层
wp231957 发表于 2021-2-2 06:57
a>b>c这种语法有些想当然了,电脑不能识别

没错,没这样的语法的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-15 04:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表