题目
原题链接:A. Grasshopper And the String
题意
一只蚂蚱玩游戏,它只能跳'A'、'E'、'I'、'O'、‘U’、‘Y’,问它一次最远能跳的距离。
代码
#include
using namespace std;
int main() {
char s[110];
scanf("%s",s);
int ans=1;
for(int i=0,t=-1; i<=strlen(s); i++) {
if(i-t>ans) ans=i-t;
if(s[i]=='A' || s[i]=='E' || s[i]=='I' || s[i]=='O' || s[i]=='U' || s[i]=='Y' || i==strlen(s)) {
t=i;
}
}
printf("%d\n",ans);
return 0;
}