检查两个矩阵是否相同的 C# 程序

2023年 8月 27日 38.6k 0

检查两个矩阵是否相同的 C# 程序

if (row1 != row2 && col1 != col2) {
Console.Write("Matrices can't be compared:");
}

现在,在 else 条件下检查指标是否相同。我们还在这里设置了一个标志 -

if (row1 != row2 && col1 != col2) {
Console.Write("Matrices can't be compared:");
} else {
Console.Write("Comparison of Matrices: ");
for (i = 0; i < row1; i++) {
for (j = 0; j < col2; j++) {
if (arr1[i, j] != arr2[i, j]) {
flag = 0;
break;
}
}
}
if (flag == 1)
Console.Write("Our matrices are equal!");
else
Console.Write("Our matrices are not equal!");
}

登录后复制

示例

让我们看一下完整的代码来检查两个矩阵是否相同。

现场演示

using System;
namespace Demo {
public class ApplicationOne {
public static void Main() {
int[, ] arr1 = new int[10, 10];
int[, ] arr2 = new int[10, 10];
int flag = 1;
int i, j, row1, col1, row2, col2;
Console.Write("Rows in the 1st matrix: ");
row1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Columns in the 1st matrix: ");
col1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Rows in the 2nd matrix: ");
row2 = Convert.ToInt32(Console.ReadLine());
Console.Write("Columns in the 2nd matrix: ");
col2 = Convert.ToInt32(Console.ReadLine());
Console.Write("Elements in the first matrix:");
for (i = 0; i < row1; i++) {
for (j = 0; j < col1; j++) {
Console.Write("element - [{0}],[{1}] : ", i, j);
arr1[i, j] = Convert.ToInt32(Console.ReadLine());
}
}
Console.Write("Elements in the second matrix:");
for (i = 0; i < row2; i++) {
for (j = 0; j < col2; j++) {
Console.Write("element - [{0}],[{1}] : ", i, j);
arr2[i, j] = Convert.ToInt32(Console.ReadLine());
}
}
Console.Write("Matrix 1:");
for (i = 0; i < row1; i++) {
for (j = 0; j < col1; j++)
Console.Write("{0} ", arr1[i, j]);
Console.Write("");
}
Console.Write("Matrix 2:");
for (i = 0; i < row2; i++) {
for (j = 0; j < col2; j++)
Console.Write("{0} ", arr2[i, j]);
Console.Write("");
}
if (row1 != row2 && col1 != col2) {
Console.Write("Matrices can't be compared:");
} else {
Console.Write("Comparison of Matrices: ");
for (i = 0; i < row1; i++) {
for (j = 0; j < col2; j++) {
if (arr1[i, j] != arr2[i, j]) {
flag = 0;
break;
}
}
}
if (flag == 1)
Console.Write("Our matrices are equal!");
else
Console.Write("Our matrices are not equal!");
}
}
}
}

登录后复制

输出

Rows in the 1st matrix: Columns in the 1st matrix: Rows in the 2nd matrix: Columns in the 2nd matrix: Elements in the first matrix:
Elements in the second matrix:
Matrix 1:
Matrix 2:
Comparison of Matrices:
Our matrices are equal!

登录后复制

以上就是检查两个矩阵是否相同的 C# 程序的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

如何删除WordPress中的所有评论
检查WordPress服务器磁盘使用情况的7种简便方法(查找大文件和数据)
如何更改WordPress常量FS_METHOD
如何为区块编辑器、Elementor等构建WordPress文章模板
如何彻底地删除WordPress主题及相关内容
如何使用WordPress搭建一个内网

发布评论