码迷,mamicode.com
首页 > 其他好文 > 详细

一个3*4的矩阵,求出其中最大的那个元素的值,及其所在的行号与列号

时间:2021-01-30 11:55:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:i++   div   rgba   nbsp   print   scanf   family   rgb   temp   

有一个3*4的矩阵,求出其中最大的那个元素的值,及其所在的行号与列号

 1 #include <stdio.h> 
 2 int main(void)
 3 {
 4     int a[3][4],i,j,max,temp;
 5     printf("请输入一个3*4的数组:");
 6     for(i = 0;i < 3;i++)
 7     {
 8         for(j = 0;j < 4;j++)
 9         {
10             scanf("%d", &a[i][j]);
11         }
12     }
13     max = a[0][0];
14     for(i = 0;i < 3;i++)
15     {
16         for(j =0;j < 4;j++)
17         {
18             if(a[i][j] > max)
19             {
20                 temp = max;
21                 max = a[i][j];
22                 a[i][j] = temp;
23             }
24         }
25     }
26     printf("最大的元素是%d,在%d行,在%d列",max,i,j);
27 }

 

一个3*4的矩阵,求出其中最大的那个元素的值,及其所在的行号与列号

标签:i++   div   rgba   nbsp   print   scanf   family   rgb   temp   

原文地址:https://www.cnblogs.com/dazhuzi/p/14345930.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!