MNT3 CODIGO
Enviado por TheSoulsThief • 23 de Marzo de 2020 • Tarea • 1.593 Palabras (7 Páginas) • 181 Visitas
CODIGO
using System;
namespace MN_Matrices
{
class Program
{
static void Main(string[] args)
{
int[,] mat = new int[3,3];
for(int i=0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
Console.WriteLine("Ingresa el valor ["+i+" , "+j+"]");
mat[i, j] = int.Parse(Console.ReadLine());
}
}
Console.WriteLine();
Console.WriteLine("***Matriz***");
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
Console.Write(mat[i, j]+" ");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
}
PRUEBAS
[pic 1]
[pic 2]
CODIGO
using System;
namespace MN_Matrices
{
class Program
{
static void Main(string[] args)
{
int[,] mat = new int[3,3];
for(int i=0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
Console.WriteLine("Ingresa el valor ["+i+" , "+j+"]");
mat[i, j] = int.Parse(Console.ReadLine());
}
}
Console.WriteLine();
Console.WriteLine("***Matriz***");
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
Console.Write(mat[i, j]+" ");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
}
CODIGO
using System;
namespace MN_Matrices
{
class Program
{
static void Main(string[] args)
{
int[,] mat = new int[3,3];
for(int i=0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
Console.WriteLine("Ingresa el valor ["+i+" , "+j+"]");
mat[i, j] = int.Parse(Console.ReadLine());
}
...