习题11-2 查找星期 (15 point(s))
本题要求实现函数,可以根据下表查找到星期,返回对应的序号。
序号 | 星期 |
---|---|
0 | Sunday |
1 | Monday |
2 | Tuesday |
3 | Wednesday |
4 | Thursday |
5 | Friday |
6 | Saturday |
函数接口定义:
int getindex( char *s );
函数getindex
应返回字符串s
序号。如果传入的参数s
不是一个代表星期的字符串,则返回-1。
裁判测试程序样例:
#include <stdio.h>
#include <string.h>
#define MAXS 80
int getindex( char *s );
int main()
{
int n;
char s[MAXS];
scanf("%s", s);
n = getindex(s);
if ( n==-1 ) printf("wrong input!n");
else printf("%dn", n);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例1:
Tuesday
结尾无空行
输出样例1:
2
结尾无空行
输入样例2:
today
输出样例2:
wrong input!
参考答案:
int getindex( char *s )
{
if(0==strcmp("Sunday",s)) return 0;
else if(0==strcmp("Monday",s)) return 1;
else if(0==strcmp("Tuesday",s)) return 2;
else if(0==strcmp("Wednesday",s)) return 3;
else if(0==strcmp("Thursday",s)) return 4;
else if(0==strcmp("Friday",s)) return 5;
else if(0==strcmp("Saturday",s)) return 6;
else return -1;
}
最后
以上就是默默鼠标最近收集整理的关于C语言:习题11-2 查找星期.2021-08-16的全部内容,更多相关C语言:习题11-2内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复