hdoj 1039

#include <iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
#define MAX 30
char password[MAX];

int isVowel(char c)
{
    if(c=='a'||c=='e'||c=='i'||c=='o'||c=='u')
    {
        return 1;
    }
    return 0;
}

int main()
{
    //freopen("1.txt","r",stdin);
    while(scanf("%s",password))
    {
        if(strcmp(password,"end")==0)
            return 0;

        //rule 1,zhishao yige a e i o u
        int i;
        int containOneVowel=0;
        for(i=0;i<strlen(password);i++)
        {
            if(isVowel(password[i]))
            {
                containOneVowel=1;
                break;
            }
        }


        int sameLetter=0;
        //如果符合条件一,包含一个原因字母
        if(containOneVowel)
        {
            for(i=0;i+1<strlen(password);i++)
            {
                if(password[i]==password[i+1])
                {
                    if(password[i]!='e'&&password[i]!='o')
                    {
                        sameLetter=1;
                        break;
                    }
                }
            }
        }

        int threeLetter=0;
        //如果符合条件3,不包含两个相同的字母
        if(!sameLetter)
        {
            for(i=0;i+2<strlen(password);i++)
            {
                if(isVowel(password[i])==isVowel(password[i+1])
                   &&isVowel(password[i+2])==isVowel(password[i+1]))
                {
                    threeLetter=1;
                    break;
                }
            }
        }



        if(containOneVowel&&!sameLetter&&!threeLetter)
        {
            printf("<%s> is acceptable.\n",password);
        }else{
            printf("<%s> is not acceptable.\n",password);
        }
    }
    return 0;
}

It cannot contain two consecutive occurrences of the same letter, except for 'ee' or 'oo'.

后面的except for 很重要

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值