檢查兩個矩陣是否相同的 C# 程序

王林
發布: 2023-08-25 15:17:07
轉載
1060 人瀏覽過

检查两个矩阵是否相同的 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 &amp;&amp; col1 != col2) {
            Console.Write("Matrices can&#39;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# 程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板