count of vowels
Sun Oct 12 2025 13:26:36 GMT+0000 (Coordinated Universal Time)
Saved by
@robo
using System;
class Program {
static void Main() {
Console.Write("Enter string: ");
string str = Console.ReadLine();
int count = str.Count(c => "aeiouAEIOU".Contains(c));
Console.WriteLine("Vowels: " + count);
}
}
content_copyCOPY
Comments