Answer to Question 07C-6

  bool even(int n)
  {
    return n % 2 == 0;
  }