Problem #852 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ method that checks whether all the characters in a given string are vowels (a,e,i,o,u) or not. Return true if each character in the string is a vowel, otherwise return false.

Your Solution