1. Write a program that reads a word at a time and determines whether the word begins with a vowel, a consonant or something else such as a number. Words are repeatedly accepted until the word 'quit' is entered. The program should then output the number of words read that begin with a vowel, the number of words read that begin with consonants and the number of words read that fit neither of those categories (numbers). Hints: One or more spaces, tabs or enter keys will terminate input using cin. Therefore, each cin will read one word. Parsing the input stream is not needed. Instead, include the cin statement in the loop that processes a word and continues until the word read is "quit". String objects can be used as character arrays; the element at index location 0 is the first character. The function isalpha accepts a single character as a parameter and returns a Boolean indicator as to whether or not the character is a letter. The functions toupper and tolower accept a single character as a parameter and return the character converted to upper or lower case. Please see http://www.cplusplus.com/reference/cctype/ & to learn more about using the isalpha, tolower, and toupper functions. Example runs (two separate runs shown): Enter words (quit to end): The 12 awesome oxen ambled quietly across 15 acres of farmland. quit 6 words begin with a vowel 3 words begin with a consonant 2 other 'words' were found Enter words (quit to end): A cat jumped over the dog! quit 2 words begin with a vowel 4 words begin with a consonant O other 'words' were found

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter7: User-defined Simple Data Types, Namespaces, And The String Type
Section: Chapter Questions
Problem 3PE
icon
Related questions
Question
100%

This is in C++. Please use easy logic with comments 

1. Write a program that reads a word at a time and determines whether the word begins with a vowel, a
consonant or something else such as a number. Words are repeatedly accepted until the word 'quit' is entered.
The program should then output the number of words read that begin with a vowel, the number of words read
that begin with consonants and the number of words read that fit neither of those categories (numbers).
Hints: One or more spaces, tabs or enter keys will terminate input using cin. Therefore, each cin will read one
word. Parsing the input stream is not needed. Instead, include the cin statement in the loop that processes a
word and continues until the word read is "quit".
String objects can be used as character arrays; the element at index location 0 is the first character. The function
isalpha accepts a single character as a parameter and returns a Boolean indicator as to whether or not the
character is a letter. The functions toupper and tolower accept a single character as a parameter and return the
character converted to upper or lower case. Please see http://www.cplusplus.com/reference/cctype/ & to learn
more about using the isalpha, tolower, and toupper functions.
Example runs (two separate runs shown):
Enter words (quit to end): The 12 awesome oxen ambled quietly across 15 acres of farmland. quit
6 words begin with a vowel
3 words begin with a consonant
2 other 'words' were found
Enter words (quit to end): A cat
jumped over
the dog!
quit
2 words begin with a vowel
4 words begin with a consonant
O other 'words' were found
Transcribed Image Text:1. Write a program that reads a word at a time and determines whether the word begins with a vowel, a consonant or something else such as a number. Words are repeatedly accepted until the word 'quit' is entered. The program should then output the number of words read that begin with a vowel, the number of words read that begin with consonants and the number of words read that fit neither of those categories (numbers). Hints: One or more spaces, tabs or enter keys will terminate input using cin. Therefore, each cin will read one word. Parsing the input stream is not needed. Instead, include the cin statement in the loop that processes a word and continues until the word read is "quit". String objects can be used as character arrays; the element at index location 0 is the first character. The function isalpha accepts a single character as a parameter and returns a Boolean indicator as to whether or not the character is a letter. The functions toupper and tolower accept a single character as a parameter and return the character converted to upper or lower case. Please see http://www.cplusplus.com/reference/cctype/ & to learn more about using the isalpha, tolower, and toupper functions. Example runs (two separate runs shown): Enter words (quit to end): The 12 awesome oxen ambled quietly across 15 acres of farmland. quit 6 words begin with a vowel 3 words begin with a consonant 2 other 'words' were found Enter words (quit to end): A cat jumped over the dog! quit 2 words begin with a vowel 4 words begin with a consonant O other 'words' were found
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT