Browse Source

Release 1.0

master
parent
commit
10cc0b647a
  1. 16
      linear/Program.cs

16
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] + " ");

Loading…
Cancel
Save