# Take a word from the user and count how many vowels (a, e, i, o, u) it contains. # 1. Loop through each character in the word. # 2. Check if that character is inside the string "aeiouAEIOU". # 3. If ...