Exemplo n.º 1
0
void Promotion::saisir(istream &cin) {
    float taux;
    string lib;
    cout << "Entrez un libellé : ";
    cin >> lib;
    cout << "Entrez la réduction : ";
    cin >> taux;
    
    setLibelle(lib);
    setTauxReduction(taux);
}
Exemplo n.º 2
0
Tarif::Tarif(const string& unLibelle, float unPrixKilo) : prixAuKm(unPrixKilo,PRIXMIN,PRIXMAX) {
    setLibelle(unLibelle);

}