单点时限: 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
*/
1
January