-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathVowel Counting.cpp
56 lines (47 loc) · 1.32 KB
/
Vowel Counting.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
while (t--) {
char a[1001];
int i;
cin >> a;
for (i=0; i<strlen(a); i++) {
if (a[i]=='a'||a[i]=='e'||a[i]=='i'||
a[i]=='o'||a[i]=='u')
cout << (char)(a[i]-32);
else if ((a[i]!='A'&&a[i]!='E'&&a[i]!='I'&&
a[i]!='O'&&a[i]!='U')&&(a[i]>='A'&&a[i]<='Z'))
cout << char(a[i]+32);
else cout << a[i];
}
cout << '\n';
}
return 0;
}
/*
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
*/