文章
38
粉丝
74
获赞
124
访问
26.2k
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int eachtime[26]={1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4};
int gorup[26]= {1,1,1,2,2,2,3,3,3,4,4,4,5,5,5,6,6,6,6,7,7,7,8,8,8,8};
int main()
{
char s[100];
while(gets(s))
{
int sum=0;
char pre=‘a’;
for(int i=0;i<strlen(s);i++){
if(gorup[s[i]-'a']==gorup[pre-'a']) sum+=2;
sum+=eachtime[s[i]-'a'];
pre=s[i];
}
printf("%d\n",sum);
}
}
在本地比如说bob是7,但是在线输出结果是9
登录后发布评论
要注意gets这个函数会读空行,用gets的时候要小心,如果读入的字符串是空的就不输出。