【C语言】判断是否为上三角矩阵

#include 
#define N 81
int main()
{
  int n;
  int a[N][N];
  int i,j;
  int t=1;
  printf("Input n:");
  scanf("%d",&n);
  printf("Input array:\n");
  for(i=0;i

【问题描述】4.9 判断是否为上三角矩阵。

输入一个正整数n(1

(上三角矩阵,即主对角线以下的元素都为0,主对角线为从矩阵的左上角至右下角的连线)。

【输入形式】

从键盘输入一个正整数n和矩阵阵列。

【输入输出样例1】

Input n:3

Input array:(输出后换行)

1 2 3

0 4 5

0 0 6

YES

【输入输出样例2】

Input n:3

Input array:(输出后换行)

1 2 3

4 5 6

7 8 9

NO

【样例说明】

输出提示符后冒号为英文字符,后面没有空格。

输出结束不换行。

你可能感兴趣的:(算法,c语言,c++)