作者在 2018-11-22 21:18:14 发布以下内容
7-1 判断上三角矩阵 (10 分)
#include<stdio.h>
int main()
{
int T,n,h,l,i,j,p;
int a[10][10];
scanf("%d",&T);
for(i=0;i<=T;i++)
{
scanf("%d",&n);
for(h=0;h<n;h++)
{
for(l=0;l<n;l++)
{
scanf("%d",&a[h][l]);
}
}
j==0;
p==1;
for(h=1;h<n;h++)
{
for(l=0;l<=j;l++)
{
if(a[h][l]!=0)
p==0;
p==1;
}
j++;
}
if(p==0)
printf("NO\n");
if(p==1)
printf("YES\n");
}
return 0;
}