using System;namespace Demo {public class ApplicationOne {public static void Main() {int[, ] arr1 = new int[10, 10];
编程学习网为您整理以下代码实例,主要实现:C#检查两个矩阵是否相同,希望可以帮到各位朋友。
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:\n");
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:\n");
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:\n");
for (i = 0; i < row1; i++) {
for (j = 0; j < col1; j++)
Console.Write("{0} ", arr1[i, j]);
Console.Write("\n");
}
Console.Write("Matrix 2:\n");
for (i = 0; i < row2; i++) {
for (j = 0; j < col2; j++)
Console.Write("{0} ", arr2[i, j]);
Console.Write("\n");
}
if (row1 != row2 && col1 != col2) {
Console.Write("Matrices can't be compared:\n");
} else {
Console.Write("Comparison of Matrices: \n");
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!\n\n");
else
Console.Write("Our matrices are not equal!");
}
}
}
}
沃梦达教程
本文标题为:C#检查两个矩阵是否相同
猜你喜欢
- C#嵌套switch语句 1970-01-01
- C#使用string.concat来连接字符串 1970-01-01
- C#抽象和虚拟类 1970-01-01
- C# break语句 1970-01-01
- C#调用方法示例2 1970-01-01
- C#使用递归来计算阶乘 1970-01-01
- C#检查字符串是否包含特殊字符 1970-01-01
- C#基本语法 1970-01-01
- C#将十进制转换为八进制数 1970-01-01
- C#主线程 1970-01-01