43

Ejercicio 14.- Invertir un arreglos de caracteres en Visual Basic.NET [43]

En este tutorial vamos invertir un arreglos de caracteres en Visual Basic.NET y las vamos a almacenar en un arreglo de caracteres, para ello vamos a realizar los siguientes pasos:

  • Pedir al humano que ingrese un texto.
  • Obtener la longitud del texto.
  • Crear un ciclo inverso que almacene las letras pero al revés.
  • Mostrar el texto invertido.

Codigo para invertir un arreglos de caracteres en Visual Basic.NET: https://github.com/programadornovato/VisualBasic/commit/95b80a8739354f6e325b24c30a5985f8927cca0d

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())
        Console.WriteLine("Humano ingresa un texto")
        Dim texto = Console.ReadLine
        If texto <> "" Then
            Dim longitud = texto.Length
            Dim contador = 0
            Dim caracteres = New Char(longitud - 1) {}
            For i = longitud - 1 To 0 Step -1
                caracteres(contador) = texto(i)
                contador = contador + 1
            Next
            'For Each caracter In caracteres
            '    Console.Write(caracter)
            'Next
            Console.WriteLine(caracteres)
        Else
            Console.WriteLine("Humano flojo tu texto no tiene texto")
        End If
        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 *