Advertisement
AndriikoM

Лекція 1, завдання 2

Oct 17th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main ()
  6. {
  7.     int w;
  8.     cout <<"Vvedit svou zarplaty:";
  9.     cin >> w;
  10.     if (w<1000)
  11.     {
  12.         cout << "Krashche pracuyte";
  13.     }
  14.     if (w>999)
  15.     {
  16.         if (w>999999)
  17.         {
  18.             cout << "Ti millioner!";
  19.         }
  20.         if (w<1000000)
  21.         {
  22.             cout << "Horosho";
  23.         }
  24.     }
  25.     cout << "...no ti molodec";
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement