题解 | #矩阵相等判定#

矩阵相等判定

https://www.nowcoder.com/practice/2f058b1e89ae43f7ab650c0fd0b71fa8

#include <stdio.h>

int main()
{
    int arr[10][10]={0};
    int arr2[10][10]={0};
    int n=0;
    int m=0;
    int count=0;
    scanf("%d %d",&n,&m);
    int i;int j;
    for(i=0;i<n;i++)
    {
        for(j=0;j<m;j++)
        {
            scanf("%d",&arr[i][j]);
        }
    }
    for(i=0;i<n;i++)
    {
        for(j=0;j<m;j++)
        {
            scanf("%d",&arr2[i][j]);
        }
    }
        for(i=0;i<n;i++)
    {
        for(j=0;j<m;j++)
        {
        if(arr[i][j]==arr2[i][j])
        {
           count++;
        }
        }
    }
    if(count==n*m)
    {
        printf("Yes\n");
    }
    else {
    {
        printf("No\n");
    }
    }
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
10-29 21:14
疯犬丨哈士奇:喜欢你的人会主动表白,对你有想法的人会很主动,所以要你的公司不会吊着你所以懂了吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务