Untitled

 avatar
unknown
plain_text
a year ago
400 B
4
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