文章

37

粉丝

98

获赞

4

访问

22.8k

头像
删除最大最小数 题解:考虑最大最小值为同一个时的处理
P1022 贵州大学机试题
发布于2024年3月5日 16:06
阅读数 590


#include<iostream>
#include<algorithm>
#include<random>
#include<string>
#include<time.h>
using namespace std;

int main()
{
    int n;
    int a[100];
    cin >> n;
    int flag[100] = { 0 };
    int minIndex, maxIndex;
    int min = 9999, max = -9999;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        if (a[i] > max) {
            max = a[i];
            maxIndex = i;
        }
        if (a[i] <= min) {//保证了最大值和最小值不指向同一个数
            min = a[i];
            minIndex = i;
     ...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发