Untitled
unknown
plain_text
2 years ago
496 B
17
Indexable
static void Main(string[] args)
{
int toplam = 0;
while (true)
{
int sayiGir= Convert.ToInt32(Console.ReadLine());
if(sayiGir <0)
{
break;
}
else
{
toplam += sayiGir;
}
}
Console.WriteLine( toplam.ToString() );
Console.ReadKey();
}Editor is loading...
Leave a Comment