Klavyeden girilen herhangi bir cümlenin içerisindeki sesli ve sessiz harfleri bulan C# kodu


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication35
{
    class Program
    {
        static void Main(string[] args)
        {

            int adet = 0;
            string cumle;
            Console.Write("Bir Kelime Girin : ");
            cumle = Console.ReadLine();
            for (int i = 0; i < cumle.Length; i++)
            {
                if (cumle[i] == 'a' || cumle[i] == 'e' || cumle[i] == 'ı'
               || cumle[i] == 'i' || cumle[i] == 'u' || cumle[i] == 'ü' ||
               cumle[i] == 'o' || cumle[i] == 'ö' || cumle[i] == 'A' || cumle[i] == 'E' || cumle[i] == 'I'
               || cumle[i] == 'İ' || cumle[i] == 'U' || cumle[i] == 'Ü' || cumle[i] == 'O' || cumle[i] == 'Ö')
                    adet++;

            }
            Console.WriteLine("Sesli Harf Sayısı : "+ adet);
            int sessiz = cumle.Length - adet;
            Console.WriteLine("Sessiz Harf Sayısı : "+ sessiz);
            Console.ReadKey();

        }
    }
}

Hiç yorum yok:

Yorum Gönder