namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Toplanacak sayı adedini girin: ");
int kac = Convert.ToInt32(Console.ReadLine());
int toplam = 0;
for (int s = 1; s <= kac; s++)
{
Console.Write(s.ToString() + ". sayıyı girin: ");
int t = Convert.ToInt32(Console.ReadLine());
toplam = toplam + t;
}
Console.WriteLine("SONUÇ: " + toplam.ToString());
Console.ReadKey();
}
}
}
İyi çalışmalar.