Untitled

mail@pastecode.io avatar
unknown
plain_text
7 months ago
788 B
13
Indexable
Never
using System;

class Program
{
    static void Main(string[] args)
    {
        int toplam = 0;
      
      Console.WriteLine("Lütfen bir sayı girin:");

        while (true)
        {
            int sayi;
            if (int.TryParse(Console.ReadLine(), out sayi))
            {
                if (sayi < 0)
                {
                    break;
                }
                toplam += sayi;
            }
            else
            {
                Console.WriteLine("Geçersiz bir sayı girdiniz. Lütfen tekrar deneyin.");
            }
        }

        Console.WriteLine("Girdiğiniz pozitif sayıların toplamı: " + toplam);
        Console.WriteLine("Program sonlandı. Çıkış yapmak için herhangi bir tuşa basın.");
        Console.ReadKey();
    }
}
Leave a Comment