Question: C# Programming Write a program named CountVowels that accepts a phrase from the user and counts the number of vowels in the phrase. For this
C# Programming
Write a program named CountVowels that accepts a phrase from the user and counts the number of vowels in the phrase. For this exercise, count both uppercase and lowercase vowels, but do not consider y to be a vowel.

CountVowels.cs Instructions Write a program named CountVowels that accepts a phrase from the user and counts the number of vowels in the phrase. For this exercise, count both uppercase and lowercase vowels, but do not consider yto be a vowel. 1 using System; 2 using static System.Console; 3 class CountVowels 4 5 static void Main() 7 // Write your main here 9 GRADING As you complete the steps above, you can use the Test button to check if the lab tests are passing. Once you are satisfied with the results, use the Grade button to save vour score
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
