Vowels

PHOTO EMBED

Sun Oct 12 2025 13:34:25 GMT+0000 (Coordinated Universal Time)

Saved by @vplab2025 #c#

using System;

class Program
{
    static void Main()
    {
        Console.Write("Enter a string: ");
        string str = Console.ReadLine().ToLower();

        int count = 0;

        foreach (char ch in str)
        {
            if (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u')
            {
                count++;
            }
        }

        Console.WriteLine("Number of vowels: " + count);
    }
}
content_copyCOPY