Advertisement
muftY

EVEN function Muftyyyy

Feb 27th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include<stdio.h>
  2. int EVEN(int m,int x)
  3. {
  4. int summmm=0;
  5.  
  6. if(m%2==0 && x%2==0)
  7. {
  8. return printf("EVEN\n");
  9. }
  10. else {
  11. return printf("Not Even\n");
  12. }
  13.  
  14. }
  15.  
  16. int main()
  17. {
  18. int e,r;
  19.  
  20. scanf("%d %d",&e,&r);
  21.  
  22. EVEN(e,r);
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement