Created
July 26, 2026 00:47
-
-
Save Kiuren/48336f92bdee8bc7af708623170c8010 to your computer and use it in GitHub Desktop.
Creado con PseInt Web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Algoritmo AlternarLetras | |
| Definir frase Como Cadena | |
| Definir i, L Como Entero | |
| Escribir "Ingrese una frase: " | |
| Leer frase | |
| i = 0 | |
| L = Longitud(frase) - 1 | |
| Mientras i <= L Hacer | |
| Escribir Sin Saltar SubCadena(frase, L, 1) | |
| Si i < L Entonces | |
| Escribir Sin Saltar Subcadena(frase, i, 1) | |
| FinSi | |
| i = i + 1 | |
| L = L - 1 | |
| FinMientras | |
| Escribir "" | |
| FinAlgoritmo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment