Answer:
Write a recursive, bool-valued function, containsVowel, that accepts a string and returns true if the string contains a vowel. A string contains a vowel if: The first character of the string is a v…
Explanation:
A:
bool containsVowel (string s) { bool hasVowel=false; if (s.length()==0) return false; else if (s[0]=='a'|| s[0]=='e'|| s[0]=='u'|| s[0]=='o'|| s[0]=='i'|| s[0]=='A'|| s[0]=='E'|| s[0]=='U'|| s[0]=='O'|| s[0]=='
Use Amazon music you can play any song you want
The flowchart to reverse digits of an integer may be explained like this: <span>If its a decimal number you could use modulus function to return the first lowest digit in the integer like 45%10 would give you a 5. By doing that you will have the number reversed. Lets see an example of that
Flow: (Lets take for example 123)
num = 123
loop
print num%10 (prints 3)
num = num/10 (num now is 12 - integer division removes remainder)
end loop
result : 321</span>
Cross-platform, i believe thats your answer
if this is correct please mark as brainliest.