Untitled
unknown
plain_text
2 years ago
400 B
7
Indexable
static void Main(string[] args)
{
int sayi = 1;
int toplam = 0;
while(sayi > 0 )
{
Console.WriteLine("Sayı giriniz:");
sayi = Convert.ToInt32(Console.ReadLine());
if(sayi < 0)
{
break;
}
toplam += sayi;
}
Console.WriteLine("Toplam:" + toplam);
Console.ReadLine();
}Editor is loading...
Leave a Comment