Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int x ;
- cout << "Podaj liczbe: " << endl;
- cin >> x;
- if( x % 2 == 0)
- {
- cout << "Liczba jest parzysta." << endl;
- }
- else
- {
- cout << "Liczba nie jest parzysta." << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment