1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00
202401-programming-assignments/【实践课外】14.指针2/6-5 查找星期.md

64 lines
960 B
Markdown
Raw Normal View History

2024-12-04 04:45:47 +00:00
# 6-5 查找星期
本题要求实现函数,可以根据下表查找到星期,返回对应的序号。
| 序号 | 星期 |
|:-----: |:--------:|
| 0 | Sunday |
| 1 | Monday |
| 2 | Tuesday |
| 3 | Wednesday |
| 4 | Thursday |
| 5 | Friday |
| 6 | Saturday |
### 函数接口定义:
```c++
int getindex( char *s );
```
函数`getindex`应返回字符串`s`序号。如果传入的参数`s`不是一个代表星期的字符串,则返回-1。
### 裁判测试程序样例:
```c++
#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
```in
Tuesday
```
### 输出样例1
```out
2
```
### 输入样例2
```
today
```
### 输出样例2
```
wrong input!
```