Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active February 11, 2022 16:33
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/fe12dbc9315aec09067f12582846162d to your computer and use it in GitHub Desktop.
Save parzibyte/fe12dbc9315aec09067f12582846162d to your computer and use it in GitHub Desktop.
Algoritmo PrecioIndividual
Escribir "Ingrese precio individual: "
Leer precio
Escribir "Ingrese cantidad a comprar: "
Leer cantidad
total_sin_iva <- precio * cantidad
total_con_iva = total_sin_iva * 1.127
Escribir "Total sin iva: ", total_sin_iva
Escribir "Total con iva: ", total_con_iva
FinAlgoritmo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment