Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 28, 2022 02:13
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/78dcca4895c4b69ca1440d370d2cf7c5 to your computer and use it in GitHub Desktop.
Save parzibyte/78dcca4895c4b69ca1440d370d2cf7c5 to your computer and use it in GitHub Desktop.
Algoritmo CalcularPromedio
// https://parzibyte.me/blog
Escribir "Ingrese calificación de investigación: "
Leer investigacion
Escribir "Ingrese calificación de exposición: "
Leer exposicion
Escribir "Ingrese calificación de parcial: "
Leer parcial
promedio<- ((investigacion*35/100)+(exposicion*35/100)+(parcial*30/100)) // Nota: puse el parcial en 30 porque si se pone a 40 la suma es 110 %
Escribir "Promedio es ",promedio
FinAlgoritmo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment