-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatrix.cs
More file actions
48 lines (43 loc) · 1.19 KB
/
Matrix.cs
File metadata and controls
48 lines (43 loc) · 1.19 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Matrices
{
internal class Matrix
{
private int rows, columns;
private int[,] matrix;
public Matrix()
{
initializeMatrix(0, 0);
}
private void initializeMatrix(int r, int c)
{
matrix = new int[r, c];
rows = r; columns = c;
}
public void SetData(int numRows, int numColumns, int min, int max)
{
initializeMatrix(numRows, numColumns);
Random numRandom = new Random();
int r, c;
for (r = 0; r < numRows; r++)
for (c = 0; c < numColumns; c++)
matrix[r, c] = numRandom.Next(min, max);
}
public string GetData()
{
string matrixStr = "";
int r, c;
for (r = 0; r < rows; r++)
{
for (c = 0; c < columns; c++)
matrixStr = matrixStr + matrix[r, c] + "\x09";
matrixStr = matrixStr + "\x0d" + "\x0a";
}
return matrixStr;
}
}
}