本文主要是介绍浙江大学PTA C语言-实验11.1 指针数组、指针与函数 6-2 输出月份英文名,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
6-2 输出月份英文名 (15point(s))
本题要求实现函数,可以返回一个给定月份的英文名称。
函数接口定义:
char *getmonth( int n );
函数getmonth应返回存储了n对应的月份英文名称的字符串头指针。如果传入的参数n不是一个代表月份的数字,则返回空指针NULL。
裁判测试程序样例:
#include <stdio.h>
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("%s\n", s);return 0;
}
/* 你的代码将被嵌在这里 */
输入样例1:
5
输出样例1:
May
输入样例2:
15
输出样例2:
wrong input!
Author
C课程组
Organization
浙江大学
Code Size Limit
16 KB
Time Limit
400 ms
Memory Limit
64 MB
char *getmonth( int n )
{char *month;switch(n){case 1:month="January";break;case 2:month="February";break;case 3:month="March";break;case 4:month="April";break;case 5:month="May";break;case 6:month="June";break;case 7:month="July";break;case 8:month="August";break;case 9:month="September";break;case 10:month="October";break;case 11:month="November";break;case 12:month="December";break;default:month="wrong input!";break;}return month;
}
这篇关于浙江大学PTA C语言-实验11.1 指针数组、指针与函数 6-2 输出月份英文名的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!