diff --git a/linear/Program.cs b/linear/Program.cs index 3af852c..fb6dcbc 100644 --- a/linear/Program.cs +++ b/linear/Program.cs @@ -1,8 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using static System.Console; namespace linear @@ -26,19 +23,6 @@ namespace linear for (int i = 0; i < workCount; i++) matrix[i, 2] = rnd.Next(1000, 4000); - - //matrix[0, 0] = 2; - //matrix[0, 1] = 3; - //matrix[1, 0] = 3; - //matrix[1, 1] = 2; - //matrix[2, 0] = 1; - //matrix[2, 1] = 3; - //matrix[3, 0] = 5; - //matrix[3, 1] = 4; - //matrix[0, 2] = 2000; - //matrix[1, 2] = 2000; - //matrix[2, 2] = 2000; - for (int i = 0; i < workCount + 1; i++) { for (int j = 0; j < pCount + 1; j++) Write(matrix[i, j] + " ");