填空题

fun函数的功能是:首先对a所指的N行N列的矩阵,找出各行中的最大的数,再求这N个最大值中的最小的那个数作为函数值返回。请填空。
#include <stdio. h>
#define N 100
int fun(int(*a)[N]) int row, col, max, min;
for(row=0;row<N;row++

for(max=a[row][0],col=1;col<N;col++)
if( 【13】 )max=a[row][col];
if (row==0)min=max;
else if ( 【14】 )min=max;

return min;

【参考答案】

[13] a[row][col]>max或a[row][col]>=max或max<=a[row][col]或max<a......

(↓↓↓ 点击下方‘点击查看答案’看完整答案、解析 ↓↓↓)