Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. char valutazione;
  7. int voto;
  8.  
  9.  
  10. cout << "inserisci il voto:" << endl;
  11. cin >> voto;
  12.  
  13. if (voto < 6) valutazione = "i";
  14. else if (voto < 7) valutazione = "s";
  15. else if (voto < 8) valutazione = "d";
  16. else if (voto < 9) valutazione = "b";
  17. else if (voto < 10) valutazione = "d";
  18. else valutazione = "o";
  19.  
  20. cout << "la valutazione e':" << valutazione << endl;
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement