本题要求实现函数,可以根据下表查找到星期,返回对应的序号。
函数接口定义:
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("%d\n", n);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例1:
Tuesday
输出样例1:
2
输入样例2:
today
输出样例2:
wrong input!
题解:
int getindex( char *s )
{
char *weekend [7] = {
"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday",
};
int index = -1; //星期序号
int i; //循环变量
for (i = 0; i < 7; i++)
{
if (strcmp (s, weekend [i]) == 0)
{
index = i;
break;
}
}
return index;
}
转载:https://blog.csdn.net/qq_44715943/article/details/115712887
查看评论