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

Posted dwtfukgv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 3079 Vowel Counting (水题。。。判断元音)相关的知识,希望对你有一定的参考价值。

题意: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 (水题。。。判断元音)的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2952 Counting Sheep

HDU 1264 Counting Squares(模拟)

[HDU3518]Boring counting

[Hdu3887]Counting Offspring

HDU 6184 Counting Stars

[HDU]3518——Boring counting