3

I'm completely new to C# and well I would like simple code to create a matrix from user input

E.G.

int [,] matrix1 = new int [2,2]
// now using input i'd like to add integers into the array
matrix1[0,1] = Int32.Parse(Console.ReadLine()); // this is for user input

and so on.

3
  • 3
    So, Where is the problem? Commented Mar 29, 2013 at 6:47
  • 1
    @user2223460, you need to read about loops in c# and loops with multidimensional arrays Commented Mar 29, 2013 at 6:51
  • If I understand question.You need parse user input line and in loop add integers to array. Commented Mar 29, 2013 at 6:53

6 Answers 6

3
var numbers = new int[size, size];

for (var i = 0; i < size; i++)
{
    var numList = new string[size];
    numList = readLine.Split();
    for (var j = 0; j < size; j++)
    {
        numbers[i, j] = Convert.ToInt32(numList[j]);     
    }
}
Sign up to request clarification or add additional context in comments.

2 Comments

i tried this and worked the way it was supposed to. please check and mark it as answered
Code-only answers are discouraged here on SO. Can you add some explanation as to how this fixes the problem?
2
int[,] A = new int[5, 4];

//read
for (int i = 0; i < 5; i++)
{
    for (int j = 0; j < 4; j++)
    {
        A[i, j] = int.Parse(Console.ReadLine());  
    }
}

//Write
for (int i = 0; i < 5; i++)
{
    Console.WriteLine();

    for (int j = 0; j < 4; j++)
    {
        Console.Write(A[i, j]);
    }
}

Comments

1
static void Main(string[] args)
{
   int[,] matrix1 = new int[2, 2];

   for (int i = 0; i < 2; i++)
   {
         for (int j = 0; j < 2; j++)
         {
            matrix1[i, j] = Int32.Parse(Console.ReadLine());  
         }
   }

   for (int i = 0; i < 2; i++)
   {
          for (int j = 0; j < 2; j++)
          {
             Console.WriteLine("Element({0},{1})={2}", i, j, matrix1[i, j]);
          }
   }
}

Comments

1

I was trying to find a good answer to that question in C#, I searched a lot until a friend helped me to understand how to do it with user input, SO I will leave the answer here maybe it could help anyone

int n = int.Parse(Console.ReadLine()); //the size of the array
int m = n;
int[,] arr = new int[n, m];
string[]lines = new string[n]; // so we could read the input from the user
for (int i = 0; i < n; i++) // here we need to read more than one line
{
    lines[i] = Console.ReadLine();
}


for (int i = 0; i < n; i++)
{
    string[]num = lines[i].Split(' ');
    for (int j = 0; j < m; j++)
    {
        int z = Convert.ToInt32(num[j]);
        arr[i, j] = z;
    }
}

for (int i = 0; i < n; i++)
{
    Console.WriteLine();
    for (int j = 0; j < m; j++)
    {
        Console.Write(arr[i, j] + " ");
    }
}

Comments

0

var numbers = new int[size, size];

            for (var i = 0; i < size; i++)
            {
                var numList = new string[size];
                numList = readLine.Split();
                for (var j = 0; j < size; j++)
                {
                    numbers[i, j] =convert.ToInt32(numList[j]);                        
                }

}

Comments

0
Console.WriteLine("Enter the height: ");
int h = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the width: ");
string w = Convert.ToInt32(Console.ReadLine());

int[,] arr = new int[w, h];

for (int i = 0; i < w; ++i)
  for (int j = 0; j <h; ++j)
    arr[i, j] = Convert.ToInt32(Console.ReadLine());

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.