Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <math.h>
- using namespace std;
- int CZY_PARZYSTA(int a);
- int main(){
- cout << CZY_PARZYSTA(4) << endl;
- cout << CZY_PARZYSTA(5) << endl;
- cout << CZY_PARZYSTA(7) << endl;
- cout << CZY_PARZYSTA(190) << endl;
- }
- int CZY_PARZYSTA(int a){
- if (a % 2 == 0) return true;
- else return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment