概述
本题要求实现函数,可以根据下表查找到星期,返回对应的序号。
序号 星期
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 )
{
char *day[7] = { "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday" };
int i,ret=-1;
for(i=0;i<7;i++){
if(strcmp(s,day[i])==0){
ret=i;
}
}
return ret;
}
//方法二:
int getindex( char *s )
{
switch(s[0])
{
case 'S': if(strlen(s)==6) return 0;
else return 6;
case 'M': return 1;
case 'T': if(strlen(s)==7) return 2;
else return 4;
case 'W': return 3;
case 'F': return 5;
default:
return -1;
}
}
最后
以上就是酷炫火为你收集整理的(PAT)查找星期的全部内容,希望文章能够帮你解决(PAT)查找星期所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复