josiftepe

Untitled

Oct 18th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     // korisnikot ni vnesuva ocena, i treba da ispecatime opisna ocena
  8.     char ocenka;
  9.     cin >> ocenka;
  10.     //int, char
  11.     switch(ocenka){
  12.         case 'F':
  13.             cout << "nedovolen" << endl;
  14.         case 'D':
  15.             cout << "dovolen" << endl;
  16.         case 'C':
  17.             cout << "dobar" << endl;
  18.         case 'B':
  19.             cout << "mnogu dobar" << endl;
  20.         case 'A':
  21.             cout << "odlicen" << endl;
  22.         default:
  23.             cout << "ne postoi ovaa ocenka" << endl;
  24.     }
  25.  
  26.  
  27.     return 0;
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment