查询c语言编程
发布网友
发布时间:2022-03-02 08:41
我来回答
共2个回答
懂视网
时间:2022-03-02 13:02
CNP认证成绩不需要查询,它的考试形式是机试
在结束答题后就可以知道成绩,并且考官会把成绩单打印出来交给你
如果通过考试了,考生还需要去思科认证跟踪系统上注册,然后填写相关信息,申请证书。
热心网友
时间:2022-03-02 10:10
#include <stdio.h>
int main()
{
int array[100][100];
int i, j, n, m, max, t;
scanf("%d %d", &n, &m); //比如输入2 2 中间要有空格
for(i = 0; i < n; i++) //输入数组的值,比如1 2 3 4
for(j = 0; j < m; j++)
{
scanf("%d", &array[i][j]);
}
for(i = 0; i < n; i++)
{
max = array[i][0];
for(j = 1; j < m; j++)
{
if(max < array[i][j])
{
t = max;
max = array[i][j];
array[i][j] = t;
}
}
printf("第%d行最大值为%d\n", (i+1), max);
}
return 0;
}
运行通过哈!