josiftepe

Untitled

Jan 20th, 2021
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int saati;
  7.     cin >> saati;
  8.     if(saati < 8) {
  9.         cout << "Izbrkani ste od rabotaa!" << endl;
  10.     }
  11.     else if(saati < 12) {
  12.         cout << "Bravo!" << endl;
  13.     }
  14.     else {
  15.         cout << "Nemojte da lazete!" << endl;
  16.     }
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment