Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <ctype.h>
- using namespace std;
- int main()
- {
- float prezzo, pz_tot, sup;
- char tipo;
- cout<<"Inserire il prezzo: ";
- cin>>prezzo;
- cout<<"Inserire il tipo [A/B]: ";
- cin>>tipo;
- tipo = toupper(tipo);
- if (tipo=='A'){
- sup = (prezzo*7)/100;
- pz_tot = sup + prezzo;
- } else if (tipo == 'B') {
- sup = (prezzo*12)/100;
- pz_tot = sup + prezzo;
- } else {
- pz_tot = prezzo;
- }
- cout<<"Prezzo totale: " <<pz_tot;
- system("PUASE");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement