首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴whc19940817的代码贴C语言
#include<stdio.h> 
#define MAXN 20
int a[MAXN][MAXN];
main()
{
int min, /* 存储最小值 */
    max; /* 存储最大值 */
int row,col,n;
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++)
......................
阅读全部 | 2015年3月17日 23:27
1
whc19940817