zoukankan      html  css  js  c++  java
  • B

    Problem description

    Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions whatsoever that can be answered with "Yes" or "No". All the rest agree beforehand to answer the questions like that: if the question’s last letter is a vowel, they answer "Yes" and if the last letter is a consonant, they answer "No". Of course, the sleuth knows nothing about it and his task is to understand that.

    Unfortunately, Vasya is not very smart. After 5 hours of endless stupid questions everybody except Vasya got bored. That’s why Vasya’s friends ask you to write a program that would give answers instead of them.

    The English alphabet vowels are: A, E, I, O, U, Y

    The English alphabet consonants are: B, C, D, F, G, H, J, K, L, M, N, P, Q, R, S, T, V, W, X, Z

    Input

    The single line contains a question represented by a non-empty line consisting of large and small Latin letters, spaces and a question mark. The line length does not exceed 100. It is guaranteed that the question mark occurs exactly once in the line — as the last symbol and that the line contains at least one letter.

    Output

    Print answer for the question in a single line: YES if the answer is "Yes", NO if the answer is "No".

    Remember that in the reply to the question the last letter, not the last character counts. I. e. the spaces and the question mark do not count as letters.

    Examples

    Input

    Is it a melon?

    Output

    NO

    Input

    Is it an apple?

    Output

    YES

    Input

      Is     it a banana ?

    Output

    YES

    Input

    Is   it an apple  and a  banana   simultaneouSLY?

    Output

    YES
    解题思路:简单判断一行中最后一个字母(非"?")是否为元音字母,如果是则输出"YES",否则输出"NO",水过!
    AC代码:
     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 const char obj[12]={'a','A','e','E','i','I','o','O','u','U','y','Y'};
     4 bool fb(char ch){
     5     for(int i=0;i<12;++i)
     6         if(ch==obj[i])return true;
     7     return false;
     8 }
     9 int main(){
    10     char s[105];gets(s);
    11     int len=strlen(s);
    12     for(int i=len-1;i>=0;--i){
    13         if((s[i]>='A'&&s[i]<='Z')||(s[i]>='a'&&s[i]<='z')){
    14             if(fb(s[i]))cout<<"YES"<<endl;
    15             else cout<<"NO"<<endl;
    16             break;
    17         }
    18     }
    19     return 0;
    20 }
  • 相关阅读:
    MapReduce学习总结之简介
    Hive Cli相关操作
    使用Hive UDF和GeoIP库为Hive加入IP识别功能
    Google Maps-IP地址的可视化查询
    hive多表联合查询(GroupLens->Users,Movies,Ratings表)
    云计算平台管理的三大利器Nagios、Ganglia和Splunk
    机器大数据也离不开Hadoop
    hive与hbase的整合
    hive优化之------控制hive任务中的map数和reduce数
    Hadoop管理员的十个最佳实践(转)
  • 原文地址:https://www.cnblogs.com/acgoto/p/9196736.html
Copyright © 2011-2022 走看看