Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- int[,] miMatriz = CreaMatriz();
- Console.WriteLine("Matriz de {0} filas y {1} columnas", miMatriz.GetLength(0), miMatriz.GetLength(1));
- }
- static int[,] CreaMatriz()
- {
- int filas, columnas;
- do
- {
- Console.Write("Ingrese cuantas filas: ");
- filas = int.Parse(Console.ReadLine());
- } while (filas <= 0);
- do
- {
- Console.Write("Ingrese cuantas columnas: ");
- columnas = int.Parse(Console.ReadLine());
- } while (columnas <= 0);
- int[,] matriz = new int[filas, columnas];
- for (int i = 0; i < filas; ++i)
- {
- for (int j = 0; j < columnas; ++j)
- {
- Console.Write("Ingrese el valor de la fila {0} columna {1}: ", i, j);
- matriz[i, j] = int.Parse(Console.ReadLine());
- }
- }
- return matriz;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement