题解 | #最高身高#

最高身高

https://www.nowcoder.com/practice/258fe0c567ac493f9b7bc9d3669d158d

#include <stdio.h>
#include <stdlib.h>
int main() {
    int a, b,max=0,x,y;
    scanf("%d %d", &a, &b);
    int* arr=malloc(sizeof(int)*a*b);
    int i,j;
    for(i=0;i<a;i++)
    {
        for(j=0;j<b;j++)
        {
            scanf("%d",arr+i*b+j);
            if(*(arr+i*b+j)>max)
            {
                max=*(arr+i*b+j);
                x=i,y=j;
            }
        }
    }
    printf("%d %d\n",x+1,y+1);
    free(arr);
    return 0;
}

全部评论

相关推荐

10-25 12:05
已编辑
湖南科技大学 Java
若梦难了:我有你这简历,已经大厂乱杀了
点赞 评论 收藏
分享
11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务