Untitled
unknown
plain_text
2 years ago
788 B
19
Indexable
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();
}
}
Editor is loading...
Leave a Comment