Упражнения C # Sharp: принять две матрицы и проверить, равны ли они
C # Sharp Array: Упражнение-30 с решением
Напишите программу на C # Sharp, чтобы принять две матрицы и проверить, равны ли они.
Пример решения : -
C # острый код:
using System;
public class Exercise30
{
public static void Main()
{
int[,] arr1 = new int[50,50];
int[,] brr1 = new int[50,50];
int i, j, r1, c1, r2, c2, flag =1;
Console.Write("\n\nAccept two matrices and check whether they are equal :\n ");
Console.Write("-----------------------------------------------------------\n");
Console.Write("Input the number of rows in the 1st matrix : ");
r1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the number of columns in the 1st matrix : ");
c1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the number of rows in the 2nd matrix : ");
r2 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the number of columns in the 2nd matrix : ");
c2 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input elements in the first matrix :\n");
for(i=0;i<r1;i++)
{
for(j=0;j<c1;j++)
{
Console.Write("element - [{0}],[{1}] : ",i,j);
arr1[i,j] = Convert.ToInt32(Console.ReadLine());
}
}
Console.Write("Input elements in the second matrix :\n");
for(i=0;i<r2;i++)
{
for(j=0;j<c2;j++)
{
Console.Write("element - [{0}],[{1}] : ",i,j);
brr1[i,j] = Convert.ToInt32(Console.ReadLine());
}
}
Console.Write("The first matrix is :\n");
for(i=0;i<r1;i++)
{
for(j=0;j<c1 ;j++)
Console.Write("{0} ",arr1[i,j]);
Console.Write("\n");
}
Console.Write("The second matrix is :\n");
for(i=0;i<r2;i++)
{
for(j=0;j<c2 ;j++)
Console.Write("{0} ",brr1[i,j]);
Console.Write("\n");
}
/* Comparing two matrices for equality */
if(r1 != r2 && c1 != c2)
{
Console.Write("The Matrices Cannot be compared :\n");
}
else
{
Console.Write("The Matrices can be compared : \n");
for(i=0; i<r1; i++)
{
for(j=0; j<c2; j++)
{
if(arr1[i,j] != brr1[i,j])
{
flag = 0;
break;
}
}
}
if(flag == 1 )
Console.Write("Two matrices are equal.\n\n");
else
Console.Write("But,two matrices are not equal\n\n");
}
}
}
Пример вывода:
Примите две матрицы и проверьте, равны ли они: -------------------------------------------------- --------- Введите количество строк в 1-й матрице: 2 Введите количество столбцов в 1-й матрице: 2 Введите количество строк во 2-й матрице: 2 Введите количество столбцов во 2-й матрице: 2 Входные элементы в первой матрице: элемент - [0], [0]: 1 элемент - [0], [1]: 2 элемент - [1], [0]: 3 элемент - [1], [1]: 4 Входные элементы во второй матрице: элемент - [0], [0]: 5 элемент - [0], [1]: 6 элемент - [1], [0]: 7 элемент - [1], [1]: 8 Первая матрица: 1 2 3 4 Вторая матрица: 5 6 7 8 Матрицы можно сравнить: Но две матрицы не равны
Блок - схема:
Редактор кода C # Sharp:
Внесите свой код и комментарии через Disqus.
Предыдущий: Напишите программу на C # Sharp, чтобы принять матрицу и определить, является ли она разреженной матрицей.
Далее: Напишите программу на C # Sharp, чтобы проверить, является ли данная матрица матрицей идентичности.
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code