继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

C++远征之起航篇第5章 综合练习 代码参考

至繁归于至简_
关注TA
已关注
手记 6
粉丝 7
获赞 27

以下为我自己的代码

#include <iostream>
using namespace std;

int getMaxOrMin(int *arr,int count,bool isMax){
    int tempMax = arr[0];
    int tempMin = arr[0];
    int i;
    for(i = 0;i<count;i++){
        if(tempMax<arr[i]) tempMax = arr[i];
        if(tempMin>arr[i]) tempMin = arr[i];
    }
    if(isMax) return tempMax;
    else return tempMin;
}

int main() {
    int count;
    cout <<"请输入数组长度:"<<endl;
    cin >>count;
    int arr[count];
    int i;
    for(i = 0;i<count;i++){
        cout <<"请输入第"<<i+1<<"个数"<<endl;
        cin >>arr[i];
    }
    cout <<"请输入指令:1.获得最大值  0.获得最小值"<<endl;
    bool isFlag;
    cin >>isFlag;
    int temp = getMaxOrMin(arr,count,isFlag);
    cout <<(isFlag?"最大值":"最小值")<<"为:"<<temp;
    return 0;
}
打开App,阅读手记
3人推荐
发表评论
随时随地看视频慕课网APP