上三角矩阵判定

上三角矩阵判定

http://www.nowcoder.com/questionTerminal/f5a29bacfc514e5a935723857e1245e4

#include<iostream>

using namespace std;
int main(){
    int n;
    cin>>n;
    int a[n+1][n+1];
    for(int i=0;i<n;i++){
        for(int j=0;j<n;j++){
            cin>>a[i][j];
        }
    }
    bool c=true;
    for(int i=1;i<n;i++){
        for(int j=0;j<i;j++){
            if(a[i][j]) c=false;
        }
    }
    if(c==true)cout<<"YES"<<endl;
    else cout<<"NO"<<endl;
}

全部评论

相关推荐

一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务