1 задача от 4то домашно - сравняване на матрици
Имам въпрос за 1ва задача от 4то домашно - една 2D матрица има 2 компонента - х и у . В домашното обаче е показано въвеждането само на единия компонент от потребителя - х ( броя на линиите с числа ) . Броя числа (колоните) откъде го взимаме ? Потребителя ли го въвежда в началото или при натискане на Enter при въвеждане се попълват в първия вектор, после на следващия ред при Enter във втория и тн ?
Write a program that reads two integer matrices (2D arrays) from the console and compares them element by
element. For better code reusability, you could do the comparison in a function, which returns true if they are
equal and false if not.
Each matrix definition on the console will contain a line with a positive integer number R – the number of rows in
the matrix – followed by R lines containing the numbers in the matrix, separated by spaces (each line will have an
equal amount of numbers.
The matrices will have at most 10 rows and at most 10 columns.
Print equal if the matrices match, and not equal if they don’t match.
Examples
Input Output
1
1 2 3
1
1 2 3
equal
2
1 2 3
2 1 3
2
1 2 3
2 1 3
equal
4
1
11
21
31
4
1
11
21
31
equal
2
1 2 3
4 5 6
2
1 3 2
4 5 6
not equal
2
1 2 3
4 5 6
2
1 2
3 4
not equal