Ejercicio 16.- Combinar 2 arreglos en Visual Basic.NET [45]
En este ejercicio vamos a combinar 2 arreglos en Visual Basic.NET [45] y los vamos a colocar en un tercer arreglo de la siguiente forma.
- Declararemos 3 arreglos a,b y c donde a y b tendrán un tamaño de 5 y c tendrá un tamaño de 10.
- Crearemos dos bucles de 0 a 4 donde pediremos al humano que ingrese los valores del arreglo “a” y “b” respectivamente.
- Con un tercer bucle llenaremos el tercer arreglo “c” que contendrá la combinación de a y b.
- Mostraremos el arreglo “c”.
Codigo para combinar 2 arreglos en Visual Basic.NET: https://github.com/programadornovato/VisualBasic/commit/729ac554b5c8213f1287229a875ca8b0cd4c73e5
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 a = New Integer(4) {} Dim b = New Integer(4) {} Dim c = New Integer(9) {} For i = 0 To 4 Console.WriteLine("Humano ingresa el valor de a(" & i + 1 & ")") a(i) = Integer.Parse(Console.ReadLine()) Next For i = 0 To 4 Console.WriteLine("Humano ingresa el valor de b(" & i + 1 & ")") b(i) = Integer.Parse(Console.ReadLine()) Next Dim j = 0 For i = 0 To 4 c(j) = a(i) j = j + 1 c(j) = b(i) j = j + 1 Next For Each elemento In c Console.Write(elemento & "-") Next 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