Realizar un programa que ingrese una matriz de N x M con números generados aleatoriamente.
CODIGO FUENTE
using System;
using System.Collections.Generic;
using System.Text;
namespace Ejemplo_17
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Matriz de:");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("Matriz por:");
int b = int.Parse(Console.ReadLine());
int[,] bidimencion;
bidimencion = new int[a, b];
Random numero = new Random();
// Llenando de la matriz con numero aleatorios entre 1 y 100
for (int i = 0; i < a; i++)
{
for (int j = 0; j < b; j++)
{
bidimencion[i, j] = numero.Next(1, 100);
}
}
Console.WriteLine("Impresion de la matriz");
// Impresion de la matriz
for (int i = 0; i < a; i++)
{
for (int j = 0; j < b; j++)
{
Console.Write(bidimencion[i, j]);
if (j + 1 == b) { Console.WriteLine(); } else { Console.Write(" - "); }
}
}
Console.ReadKey(true);
}
}
}
CODIGO FUENTE
using System;
using System.Collections.Generic;
using System.Text;
namespace Ejemplo_17
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Matriz de:");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("Matriz por:");
int b = int.Parse(Console.ReadLine());
int[,] bidimencion;
bidimencion = new int[a, b];
Random numero = new Random();
// Llenando de la matriz con numero aleatorios entre 1 y 100
for (int i = 0; i < a; i++)
{
for (int j = 0; j < b; j++)
{
bidimencion[i, j] = numero.Next(1, 100);
}
}
Console.WriteLine("Impresion de la matriz");
// Impresion de la matriz
for (int i = 0; i < a; i++)
{
for (int j = 0; j < b; j++)
{
Console.Write(bidimencion[i, j]);
if (j + 1 == b) { Console.WriteLine(); } else { Console.Write(" - "); }
}
}
Console.ReadKey(true);
}
}
}
No hay comentarios:
Publicar un comentario