我是靠谱客的博主 无私往事,最近开发中收集的这篇文章主要介绍HDU 3079 小写元音变大写元音,大写辅音变小写辅音 水的嘛就不谈了,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<string.h>
#include<time.h>
using namespace std;
#define ll long long
#define MAXN 1000
#define ENTER printf("n")
#define MOD 1000000007
int n;
char str[50 + 1];
bool Is_vowel_lowercase(char c)
{
if (c == 'a' || c == 'e' || c == 'i' || c == 'u' || c == 'o')
{
return true;
}
return false;
}
bool Is_con_uppercase(char c)
{
switch (c)
{
case 'B':
case 'C':
case 'D':
case 'F':
case 'G':
case 'H':
case 'J':
case 'K':
case 'L':
case 'M':
case 'N':
case 'P':
case 'Q':
case 'R':
case 'S':
case 'T':
case 'V':
case 'W':
case 'X':
case 'Y':
case 'Z':return true;
default:return false;
}
}
int main()
{
scanf("%d", &n);
while (n--)
{
scanf("%s", str);
int len = strlen(str);
for (int i = 0; i < len; i++)
{
if (Is_vowel_lowercase(str[i]))
{
printf("%c", str[i] - 32);
}
else if(Is_con_uppercase(str[i]))
{
printf("%c", str[i] + 32);
}
else
{
printf("%c", str[i]);
}
}
ENTER;
}
return 0;
}

最后

以上就是无私往事为你收集整理的HDU 3079 小写元音变大写元音,大写辅音变小写辅音 水的嘛就不谈了的全部内容,希望文章能够帮你解决HDU 3079 小写元音变大写元音,大写辅音变小写辅音 水的嘛就不谈了所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部