标题:求最大最小值
取消只看楼主
换空依晨
Rank: 1
等 级:新手上路
帖 子:44
专家分:0
注 册:2013-9-13
结帖率:30.77%
 问题点数:0 回复次数:0 
求最大最小值
程序代码:
#include"stdio.h"
#define MAXN 20
int a[MAXN][MAXN];
main()
{
    int min,    /* 存储最小值 */
        max;    /* 存储最大值 */
    int row,col,n;
    system("cls");
    printf("Please input the order of the matrix:\n");/* 输入方阵的阶次 */
    scanf("%d",&n);
    printf("Please input the elements of the matrix,\n from a[0][0] to a[%d][%d]:\n",n-1,n-1);
    for(row=0;row</n;row++)
</n;col++)
</n;row++)
没看懂这个程序到底是干嘛的 谁能解释的清楚一点 谢谢
搜索更多相关主题的帖子: color system 
2014-02-22 11:31



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-427523-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.595283 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved