VWL2 - Vowel again
Dr. Orooji noticed that his name has more vowels than consonants. Since he likes meeting people like himself, he has asked you to write a program to help him identify such names.
Problem
Given a name, determine whether or not it has more vowels than consonants. Assume the vowels are “aeiou”.
Input
The first input line contains a positive integer, n, indicating the number of names to check. The names are on the following n input lines, one name per line. Each name starts in column 1 and consists of 1-20 lowercase letters (assume the name will not contain any other characters).
Output
Output each name on a separate line as it appears in the input followed by a 1 (one) or 0 (zero) on the next line indicating whether or not it has more vowels than consonants. Follow the format illustrated in the example.
Example
Input: 4 ali arup travis orooji Output: ali 1 arup 0 travis 0 orooji 1
Added by: | maradona |
Date: | 2014-09-16 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | UCF Local Programming Contest |