码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 3079 Vowel Counting (水题。。。判断元音)

时间:2016-06-02 19:46:16      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

题意:n个字符串,如果元音就是输出大写,否则输出小写。

析:没啥可说的,只要判断AEIOU就OK了。

代码如下:

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <cstring>
#include <map>
#include <cctype>

using namespace std;
const int maxn = 70;
char s[maxn];

bool judge(char ch){
    if(‘A‘ == towupper(ch) || ‘E‘ == towupper(ch) || ‘I‘ == towupper(ch) || ‘O‘ == towupper(ch) || ‘U‘ == towupper(ch))
        return true;
    return false;
}

int main(){
    int T;
    scanf("%d", &T);
    while(T--){
        scanf("%s", s);
        int n = strlen(s);
        for(int i = 0; i < n; ++i)
            if(judge(s[i]))  printf("%c", towupper(s[i]));
            else  printf("%c", towlower(s[i]));
        printf("\n");
    }
    return 0;
}

 

HDU 3079 Vowel Counting (水题。。。判断元音)

标签:

原文地址:http://www.cnblogs.com/dwtfukgv/p/5553982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!