Advertisement
rikardoricz

7 IF Tomasz Świątek 3BTI/2

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