本题要求实现函数输出月份英文名,可以返回一个给定月份的英文名称。
函数接口定义:
char *getmonth( int n );
函数getmonth应返回存储了n对应的月份英文名称的字符串头指针。如果传入的参数n不是一个代表月份的数字输出月份英文名,则返回空指针NULL。
裁判测试程序样例:
#include char *getmonth( int n ); int main() { int n; char *s; scanf("%d", &n); s = getmonth(n); if ( s==NULL ) printf("wrong input!n"); else printf("%sn", s); return 0; } /* 你的代码将被嵌在这里 */
输入样例1:
5
结尾无空行
输出样例1:
May
结尾无空行
输入样例2:
15
输出样例2:
wrong input!
char *getmonth( int n ) { char a[][19]={"January","February","March","April","May","June","July","August","September","October","November","December"}; if (n-1>=0&&n-1<12) return (a[n-1]); else return (NULL); }
这个编译后输出不了正确结果,原因是定义的二维数组是在函数内部定义的,属于局部变量输出月份英文名,只在函数内部起作用。在执行函数调用时,系统在栈上为函数内部的局部变量及形参分配内存,函数执行结束时,自动释放这些内存。
因此
char *getmonth( int n ) { static char a[][19]={"January","February","March","April","May","June","July","August","September","October","November","December"}; if (n-1>=0&&n-1<12) return (a[n-1]); else return (NULL); }