Advertisement
rikardoricz

1 IF Tomasz Świątek 3BTI/2

Nov 17th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int x;
  8.     cout << "Podaj liczbe calkowita: " << endl;
  9.     cin >> x;
  10.  
  11.     if (x>0)
  12.     {
  13.         cout << "KOT";
  14.     }
  15.     else
  16.     {
  17.         cout << "PIES";
  18.     }
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement