博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vowel Counting
阅读量:5079 次
发布时间:2019-06-12

本文共 1491 字,大约阅读时间需要 4 分钟。

Vowel Counting

Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)
Total Submission(s) : 58   Accepted Submission(s) : 18
Problem Description
The "Vowel-Counting-Word"(VCW), complies with the following conditions. Each vowel in the word must be uppercase. Each consonant (the letters except the vowels) must be lowercase. For example, "ApplE" is the VCW of "aPPle", "jUhUA" is the VCW of "Juhua". Give you some words; your task is to get the "Vowel-Counting-Word" of each word.
 

 

Input
The first line of the input contains an integer T (T<=20) which means the number of test cases. For each case, there is a line contains the word (only contains uppercase and lowercase). The length of the word is not greater than 50.
 

 

Output
For each case, output its Vowel-Counting-Word.
 

 

Sample Input
4 XYz application qwcvb aeioOa
 

 

Sample Output
xyz ApplIcAtIOn qwcvb AEIOOA
 

 

Author
AppleMan
 

 

Source
HDU 2nd “Vegetable-Birds Cup” Programming Open Contest
 
1 #include 
2 #include
3 #include
4 5 int main() 6 { 7 int T,L,i; 8 char a[50]; 9 scanf("%d",&T);10 while(T--)11 {12 scanf("%s",a);13 L=strlen(a);14 for(i=0;i
='A'&&a[i]<='Z')28 {29 a[i]+=32;30 continue;31 }32 }33 }34 printf("%s\n",a);35 }36 return 0;37 }
View Code

 

转载于:https://www.cnblogs.com/Wurq/p/3750263.html

你可能感兴趣的文章
docker入门
查看>>
Android系统--输入系统(十一)Reader线程_简单处理
查看>>
监督学习模型分类 生成模型vs判别模型 概率模型vs非概率模型 参数模型vs非参数模型...
查看>>
Mobiscroll脚本破解,去除Trial和注册时间限制【转】
查看>>
实验五 Java网络编程及安全
查看>>
32位与64位 兼容编程
查看>>
iframe父子页面通信
查看>>
ambari 大数据安装利器
查看>>
java 上传图片压缩图片
查看>>
magento 自定义订单前缀或订单起始编号
查看>>
ACM_拼接数字
查看>>
计算机基础作业1
查看>>
Ubuntu 深度炼丹环境配置
查看>>
C#中集合ArrayList与Hashtable的使用
查看>>
从一个标准 url 里取出文件的扩展名
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>