【MAC 上学习 C++】Day 62-2. 6-12 判断奇偶性 (10 分)

6-12 判断奇偶性 (10 分)

1. 题目摘自

https://pintia.cn/problem-sets/14/problems/744

2. 题目内容

本题要求实现判断给定整数奇偶性的函数。

函数接口定义:

int even( int n );
其中n是用户传入的整型参数。当n为偶数时,函数返回1;n为奇数时返回0。注意:0是偶数。

输入样例1:

-6

输出样例1:

-6 is even.

输入样例2:

5

输出样例2:

5 is odd.

3. 源码参考
#include 

using namespace std;

int even( int n );

int main()
{    
    int n;

    cin >> n;
    if (even(n))
    {
      cout << n << " is even." << endl;
    }
    else
    {
       cout << n << " is odd." << endl;
    }
  
    return 0;
}

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

  return 0;
}

你可能感兴趣的:(【MAC 上学习 C++】Day 62-2. 6-12 判断奇偶性 (10 分))