WPDeveloper

Par.cpp

Mar 26th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. /* Par ou Ímpar*/
  2. bool Par(int _numero);
  3.  
  4. bool Par(int _numero)
  5. {
  6.     if(_numero % 2 == 0){
  7.         return true;
  8.     }else {
  9.         return false;
  10.     }
  11. }
Add Comment
Please, Sign In to add comment