Matriz en C# [53]
Una matriz en C# es una estructura de datos que permite almacenar un conjunto de datos del mismo tipo. En pocas palabras es una tabla ordenada, por ejemplo esta es una matriz (Tabla) de 4×4:
Codigo: https://github.com/programadornovato/-CURSO–C-/commit/510f691d45b98cc2f06e5edce9dc75a7a32bfe5a
using System; using System.Windows.Forms; using Microsoft.VisualBasic; /* Autor: Programador novato Fecha: 01/01/2021 Este programa hace que los novatos aprenden a hacer un codigo bonito y ya */ namespace HolaMundo { class Program { static void Main(string[] args) { /* int[,] matriz = new int[2, 3]; Console.WriteLine("Filas "+matriz.GetLength(0)); Console.WriteLine("Columnas "+matriz.GetLength(1)); */ Console.WriteLine("Humano ingresa la cantidad de filas de tu matriz"); int filas = int.Parse(Console.ReadLine()); Console.WriteLine("Humano ingresa la cantidad de columnas de tu matriz"); int columnas = int.Parse(Console.ReadLine()); int[,] matriz = new int[filas, columnas]; for (int i = 0; i < filas; i++) { for (int j = 0; j < columnas; j++) { Console.WriteLine("Matriz["+(i+1)+","+(j+1)+"]:"); matriz[i, j] = int.Parse(Console.ReadLine()); } } Console.WriteLine("Humano aqui esta tu piche matriz"); for (int i = 0; i < filas; i++) { for (int j = 0; j < columnas; j++) { Console.Write(matriz[i,j]+","); } Console.WriteLine(); } int[,,] matriz3d = new int[1, 2, 3]; Console.WriteLine("x "+matriz3d.GetLength(0)); Console.WriteLine("y "+matriz3d.GetLength(1)); Console.WriteLine("z "+matriz3d.GetLength(2)); Console.Read(); } } }
🎦 [CURSO] C#: https://www.youtube.com/watch?v=NKPMGY6NCko&list=PLCTD_CpMeEKQSOU8Vf9VHXrZa2rc8X0X5&ab_channel=programadornovato
🎦 [CURSO] C++ DE 0 A HEROE 🦸: https://www.youtube.com/watch?v=APN8aCyPvww&list=PLCTD_CpMeEKTofxs7iottRxJ5YPM7BOcc&ab_channel=programadornovato
🎦 [Curso] Java Netbeans Completo☕: https://www.youtube.com/watch?v=97nO4-zdviA&list=PLCTD_CpMeEKTT-qEHGqZH3fkBgXH4GOTF&ab_channel=programadornovato
🔗 Canal de ProgramadorNovato: https://www.youtube.com/c/programadornovato
🔗 Facebook: https://facebook.com/ProgramadorNovatoOficial
🔗 Twitter: https://twitter.com/programadornova
🔗 Linkedin: https://www.linkedin.com/in/programadornovato/
🔗 Instagram: https://www.instagram.com/programadornovato/
🔗 Pagina oficial: https://www.programadornovato.com
🔗 Gracias por apoyar este canal: https://www.patreon.com/programadornovato
Anterior tutorial Siguiente tutorial
Ave que vuela, a la cazuela.