题解 | #矩阵最大值#

矩阵最大值

https://www.nowcoder.com/practice/9c550b6fe85d48bcad5a6025c6dc447d

#include <stdio.h>

int main() {
    int a,b;

    while(scanf("%d %d",&a,&b)!=EOF){
    int len=a*b;
    int array[a][b];
    for(int i=0;i<a;i++){
        for(int j=0;j<b;j++){
            scanf("%d",&array[i][j]);
        }
    }
    int t[2];
    for(int i=0;i<a;i++){
        t[0]=array[i][0];t[1]=0;
        int sum=0;
        for(int j=0;j<b;j++){
            if(array[i][j]>t[0]){
                t[0]=array[i][j];
                t[1]=j;
            }
            sum+=array[i][j];
        }
        int temp=t[1];
        array[i][temp]=sum;
    }
    for(int i=0;i<a;i++){
        for(int j=0;j<b;j++){
            printf("%d ",array[i][j]);
        }
        printf("\n");
    }

    }
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 19:05
面试官_我太想进步了:混学生会的,难怪简历这么水
点赞 评论 收藏
分享
11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
头像 会员标识
昨天 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务