53

Matriz en Visual Basic.NET [53]

Una matriz en Visual Basic.NET 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/VisualBasic/commit/e48617253fcf836a3d4e12aa3ffc2f3278d7bdd6

Imports System

'Autor: Programador Novato
'Fecha: 01/01/2021
'Este modulo sirve para ense�ar como funciona Visual Basic.NET
Module Program
    'Este codigo escribe un texto en amarillo con fondo azul
    Public Sub Main(args As String())
        'Dim matriz = New Integer(1, 2) {}
        'Console.WriteLine("Filas=" & matriz.GetLength(0))
        'Console.WriteLine("Columnas=" & matriz.GetLength(1))
        'Console.WriteLine("Humano ingresa el tama�o de las filas de tu matriz")
        'Dim filas = Integer.Parse(Console.ReadLine())
        'Console.WriteLine("Humano ingresa el tama�o de las columnas de tu matriz")
        'Dim columnas = Integer.Parse(Console.ReadLine())
        'Dim matriz = New Integer(filas - 1, columnas - 1) {}
        'For i = 0 To filas - 1
        '    For j = 0 To columnas - 1
        '        Console.WriteLine("matriz(" & i + 1 & "," & j + 1 & ")")
        '        matriz(i, j) = Integer.Parse(Console.ReadLine())
        '    Next
        'Next
        'Console.WriteLine("Humano aqui esta tu pinche matriz")
        'For i = 0 To filas - 1
        '    For j = 0 To columnas - 1
        '        Console.Write(matriz(i, j) & ",")
        '    Next
        '    Console.WriteLine()
        'Next
        Dim matriz = New Integer(0, 1, 2) {}
        Console.WriteLine("x=" & matriz.GetLength(0))
        Console.WriteLine("y=" & matriz.GetLength(1))
        Console.WriteLine("z=" & matriz.GetLength(2))
        Console.Read()
    End Sub
End Module

Curso de VB.NET⛓️: https://www.youtube.com/watch?v=aiquJHzxNWw&list=PLCTD_CpMeEKSFwAFjvrfpvSwxmbs2maMo&ab_channel=programadornovato
[CURSO] C##️⃣: https://www.youtube.com/watch?v=NKPMGY6NCko&list=PLCTD_CpMeEKQSOU8Vf9VHXrZa2rc8X0X5&index=1&t=3s&ab_channel=programadornovatoprogramadornovato
[CURSO] C# CON FORMULARIOS#️⃣: https://www.youtube.com/watch?v=l0_U4oyOuns&list=PLCTD_CpMeEKTBih1VgeunCjc83ZQ6UBMI&index=1&ab_channel=programadornovatoprogramadornovato
[Curso] C# MYSQL#️⃣: https://www.youtube.com/watch?v=-5CXNXHIzWk&list=PLCTD_CpMeEKR_4q0-7BxGHXqH0bgpqw5q&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 GUI Completo☕: https://www.youtube.com/watch?v=18UA7X2ss8g&list=PLCTD_CpMeEKThfXo8D-RXOGu5FarO7_qv&ab_channel=programadornovato

Anterior tutorial Siguiente tutorial

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *