-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask 13
85 lines (78 loc) · 2.88 KB
/
task 13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Task_13
{
class Matrix
{
public int[,] Transp(int[,] matrix, int str, int colum)
{
int[,] transpMatrix = new int[colum, str];
for (int i = 0; i < colum; i++)
{
for (int v = 0; v < str; v++)
{
transpMatrix[i, v] = matrix[v, i];
}
}
return transpMatrix;
}
}
class Program
{
static void Main(string[] args)
{
int[,] tempMatrix = new int[50, 50];
int strCount = 0; // счетчик строк в матрице
Console.WriteLine("Enter a matrix (00 to exit)");
string tempString; // строка введенная пользователем
string[] trueString; // массив элементов каждой строки
int standardColum = 0; // кол - во элементов в первой строке
while (true)
{
tempString = Console.ReadLine();
if (tempString == "00")
break;
if (strCount > 50)
break;
trueString = tempString.Split(' '); // Получаем массив нужных элементов из строки
if (strCount == 0) // задаём кол - во колонок матрицы (по первой строчке )
{
standardColum = trueString.Length;
}
if (trueString.Length == standardColum && standardColum <= 50) // Проверка на корректность введенных последующих строчек
{
for (int i = 0; i < standardColum; i++)
{
tempMatrix[strCount, i] = Convert.ToInt32(trueString[i]);
}
}
else if (standardColum > 50)
{
Console.WriteLine("Too many columns");
break;
}
else
{
Console.WriteLine("Impossible number of symbols");
continue;
}
strCount++;
}
Matrix matrix = new Matrix();
int[,] transpMatrix = matrix.Transp(tempMatrix, strCount, standardColum);
int counter = 0;
Console.WriteLine("Transp matrix: ");
foreach (int i in transpMatrix)
{
Console.Write(i + " ");
counter++;
if (counter % strCount == 0)
Console.WriteLine("");
}
Console.ReadKey();
}
}
}