2022级统计计算机双学位《程序设计原理与C语言》上机作业

1054. Number2Alpha

单点时限: 2.0 sec

内存限制: 512 MB

定义函数 Number2Alpha 将数字表示的月份变为单词表示的月份。

//********** Specification of Number2Alpha **********
char* Number2Alpha(int num);
/* PreCondition:  
     num is an integer in range [1,12]
   PostCondition: 
     return the address of a word that represents month with num
*/

样例

Input
1
Output
January