using System;
using System.Collections.Generic;
using System.Text;
namespace forOrnek
{
class Program
{
static void Main(string[] args)
{
// 0-100 arasındaki tek sayıların toplamını bulan program
int i, toplam=0;
for (i = 1; i <= 100; i += 2)
{
toplam += i;
}
Console.WriteLine("0-100 arasındaki tek sayıların toplamı: {0}", toplam);
}
}
}
Hiç yorum yok:
Yorum Gönder