G.EOTW
جمعه 08 اسفند 1393, 16:17 عصر
سلام دوستان. من یک برنامه باید بنویسم که 2 ارایه دو بعدی را با هم جمع کنه با استفاده از کلاس ها .
در کلاس زمان گرفتن مقدار برای ارایه مشکل دارم . لطفا کمک کنید.
class matrix
{
private int row;
private int colums;
private int[][] array;
public matrix(int row , int colums)
{
this.row = row;
this.colums = colums;
int[,] array = new int[row, colums];
}
public void input()
{
string t;
for (int i = 0; i < 2; i++)
{
for (int j = 0; j < 2; j++)
{
Console.Write("array {0},{1}:", i, j);
t = Console.ReadLine();
array[i][j] = int.Parse(t);
}
}
در کلاس زمان گرفتن مقدار برای ارایه مشکل دارم . لطفا کمک کنید.
class matrix
{
private int row;
private int colums;
private int[][] array;
public matrix(int row , int colums)
{
this.row = row;
this.colums = colums;
int[,] array = new int[row, colums];
}
public void input()
{
string t;
for (int i = 0; i < 2; i++)
{
for (int j = 0; j < 2; j++)
{
Console.Write("array {0},{1}:", i, j);
t = Console.ReadLine();
array[i][j] = int.Parse(t);
}
}