Answer to Question #182442 in C++ for P. Gokul

Question #182442

Design the class Vowel to find the number of vowels present in the given string. Define the constructor member function to assign the values and destructor member function to destroy the data objects.


1
Expert's answer
2021-04-17T03:07:36-0400
#include <iostream>
#include <string>


using namespace std;




class Vowel
{
private:
	string inputString;


public:
	// the constructor member function to assign the value
	Vowel(string inputString){
		this->inputString=inputString;
	}
	//destructor 
	~Vowel(){}
	int getNumberVowels() { 
		int numberVowels=0;
		string vowels = "AEIOUY";
		for (int i = 0; i < this->inputString.size(); i++){
			for (int j = 0; j < vowels.size(); j++)
			{
				if (toupper(this->inputString[i]) == vowels[j])
				{
					numberVowels++;
				}
			}
		}
		return numberVowels;
	}


};
int main()
{
	string inputString;
	cout<<"Enter the string: ";
	getline(cin,inputString);
	Vowel vowel(inputString);
	cout<<"\nThe number of vowels present in the given string: "<<vowel.getNumberVowels()<<"\n\n";
	system("pause");
	return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS