【MAC 上学习 C++】Day 23-4. 习题11-1 输出月份英文名 (15 分)

习题11-1 输出月份英文名 (15 分)

1. 题目摘自

https://pintia.cn/problem-sets/12/problems/359

2. 题目内容

本题要求实现函数,可以返回一个给定月份的英文名称。

函数接口定义:

char *getmonth( int n );
函数getmonth应返回存储了n对应的月份英文名称的字符串头指针。如果传入的参数n不是一个代表月份的数字,则返回空指针NULL。

输入样例1:

5

输出样例1:

May

输入样例2:

15

输出样例2:

wrong input!

3. 源码参考
#include 

using namespace std;

char *getmonth(int n);

int main()
{
    int n;
    char *s;

    cin >> n;
    s = getmonth(n);

    if (s != NULL)
    {
        cout << s << endl;
    }
    else
    {
        cout << "wrong input!" << endl;
    }

    return 0;
}

char *getmonth(int n)
{
    const char *m[12] = { "January","February","March","April","May","June","July","August","September","October","November","December" };

    return (char*)m[n - 1];
}

你可能感兴趣的:(【MAC 上学习 C++】Day 23-4. 习题11-1 输出月份英文名 (15 分))