C#-Programm zum Überprüfen, ob zwei Matrizen identisch sind

王林
Freigeben: 2023-08-25 15:17:07
nach vorne
1058 Leute haben es durchsucht

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

Um zu überprüfen, ob die Matrizen gleich sind, müssen Sie zunächst prüfen, ob die Matrizen vergleichbar sind, denn zum Vergleich sollten zumindest die Abmessungen beider Matrizen gleich sein.

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

Überprüfen Sie nun im else-Zustand, ob die Indikatoren gleich sind. Wir haben hier auch ein Flag gesetzt –

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!");
}
Nach dem Login kopieren

Beispiel

Sehen wir uns den vollständigen Code an, um zu überprüfen, ob zwei Matrizen gleich sind.

Live-Demo

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!");
         }
      }
   }
}
Nach dem Login kopieren

Ausgabe

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!
Nach dem Login kopieren

Das obige ist der detaillierte Inhalt vonC#-Programm zum Überprüfen, ob zwei Matrizen identisch sind. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:tutorialspoint.com
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage