-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
article = int(input("Entrez le nombre d'articles vendus : "))
prix_usd = float(input("Entrez le prix d'un article en USD : "))
taux = float(input("Veuillez entrer le taux : "))
com_fixe = float(input("Entrez le montant de la commission bancaire : "))
total_usd = article * prix_usd
total_cad = total_usd * taux
nb_tranches = total_cad // 100
montant_commission = nb_tranches * com_fixe
total_final = total_cad + montant_commission
print(f"Le montant en USD est : {total_usd:.2f}")
print(f"Le montant en CAD est : {total_cad:.2f}")
print(f"La commission bancaire est : {montant_commission:.2f}")
print(f"Le montant total à payer en CAD est : {total_final:.2f}")
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels