Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assignment 2 on Chapters 5 and 6 Repetition User Defined Functions Write a program that reads a line (srting) of input and outputs the number

Assignment 2 on Chapters 5 and 6

Repetition

User Defined Functions

Write a program that reads a line (srting) of input and outputs the number of times each lowercase vowel appears in it.

Your program must contain a function with one of its parameters as a string variable and return the number of times each lowercase vowel appears in it.

Also, write a program to test your function. (Note that if str is a variable of type string, then str.at(i) returns the character at the ith position. The position of the first character is 0. Also, str.length() returns the length of the str, that is, the number of characters in str.)

Sample outputs follow:

Congratulations

O appeared 2 times

A appeared 2 times

I appeared 1 times

U appeared 1 times

E appeared 0 times

What to submit:

  • Program_1_name.cpp file

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Core Ios Developer S Cookbook Core Recipes For Programmers

Authors: Erica Sadun ,Rich Wardwell

5th Edition

0321948106, 978-0321948106

More Books

Students also viewed these Programming questions