Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 28, 2022 03:36
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/744f56649cc732c09d670889ba09d291 to your computer and use it in GitHub Desktop.
Save parzibyte/744f56649cc732c09d670889ba09d291 to your computer and use it in GitHub Desktop.
Algoritmo CalcularCostoArticulo
Escribir "Ingrese el costo del artículo: "
Leer costo
costo_con_descuento <- costo - (costo*0.15)
costo_con_iva <- costo_con_descuento *1.13
Escribir "Costo con descuento: ", costo_con_descuento
Escribir "Costo con IVA: ", costo_con_iva
FinAlgoritmo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment