Problem1853--查找星期

1853: 查找星期

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

本题要求实现函数,可以根据下表查找到星期,返回对应的序号。 序号 星期 0 Sunday 1 Monday 2 Tuesday 3 Wednesday 4 Thursday 5 Friday 6 Saturday 函数接口定义: int getindex( char *s ); 函数getindex应返回字符串s序号。如果传入的参数s不是一个代表星期的字符串,则返回-1。 裁判测试程序样例: #include #include #define MAXS 80 int getindex( char *s ); int main() { int n; char s[MAXS]; scanf(

Input

表示星期的七个英文单词

Output

函数getindex应返回字符串s序号。如果传入的参数s不是一个代表星期的字符串,则返回-1。

Sample Input Copy

Tuesday

Sample Output Copy

2

Source/Category

233