7 lines
No EOL
213 B
Python
Executable file
7 lines
No EOL
213 B
Python
Executable file
import os
|
|
print("Quel est le prix hors taxes ?")
|
|
ht = float(input("HT = "))
|
|
tva = float(input("TVA = "))
|
|
ttc = ht + ht * tva / 100.0
|
|
print ("Le prix toutes taxes comprises est "+str(ttc))
|
|
os.system('pause') |