c++编程题:编写一函数 void matrix_max(int a[][4],int n),其功能是求出n行4列的矩阵中每行
答案:1 悬赏:0 手机版
解决时间 2021-03-02 01:43
- 提问者网友:疯子也有疯子的情调
- 2021-03-01 14:45
编写一函数 void matrix_max(int a[][4],int n),其功能是求出n行4列的矩阵中每行的最大值并输出
最佳答案
- 五星知识达人网友:刀戟声无边
- 2021-03-01 16:07
void matrix_max(int a[][4],int n){
int temp;
for (int i=0; i<4;i++){
temp=a[0,i];
for (int j=1; j<n;j++){
if(a[j,i]>temp)
temp=a[j,i];
}
cout<<"the max value of the" <<i+1<< "th row is" <<temp<<"\n";
}
}
int temp;
for (int i=0; i<4;i++){
temp=a[0,i];
for (int j=1; j<n;j++){
if(a[j,i]>temp)
temp=a[j,i];
}
cout<<"the max value of the" <<i+1<< "th row is" <<temp<<"\n";
}
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯