问题 : ch——查找星期

问题 : ch——查找星期

时间限制: 1 Sec  内存限制: 128 MB
提交: 472  解决: 344
[提交][状态][讨论版][命题人:]

题目描述

本题要求实现函数,可以根据下表查找到星期,返回对应的序号。

序号 星期
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("%d\n", n);

    return 0;
}

/* 你的代码将被嵌在这里 */


输入

输入月份英文名

如果有输出对应月份数字,否则输出wrong input!

输出

测试点1:sample

测试点2:wrong input!

样例输入

Tuesday

样例输出

2

提示

[提交][状态]