Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 4, 2022 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/db19ac0ce4466c97a63bb7516c9fe3a3 to your computer and use it in GitHub Desktop.
Save parzibyte/db19ac0ce4466c97a63bb7516c9fe3a3 to your computer and use it in GitHub Desktop.
Algoritmo sin_titulo
Escribir "Ingrese valor inicial: ";
Leer inicial;
Escribir "Ingrese valor final: ";
Leer final;
suma <- 0;
Para i<-inicial Hasta final Hacer
suma = suma + i;
FinPara;
Escribir "La suma es: ", suma;
FinAlgoritmo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment