#include <iostream.h> //--------------------------------------------------------------- int main() { const double TAXE = 1.196; double prix; cout << "Quel est votre prix hors taxe : "; cin >> prix; cout << "Prix HT : " << prix << endl; cout << "Prix TTC : " << prix*TAXE << endl; cin.get(); cin.get(); return 0; } //---------------------------------------------------------------