Kacper_Michalak

Seria 2 Zadanie 7

Nov 6th, 2020
107
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 jest parzysta." << endl;
  15.     }
  16.     else
  17.     {
  18.         cout << "Liczba nie jest parzysta." << endl;
  19.     }
  20.  
  21.     return 0;
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment