Klavyeden sıfır girilene kadar girilen sayıların ortalamasını bulan program C# Console
[code lang=”csharp”]
using System;
using System.Collections.Generic;
using System.Linq;//www.gorselprogramlama.com
using System.Text;
namespace sifir_girilene_kadar_ortalama_hesapla
{
class Program
{
static void Main(string[] args)
{
int sayac = -1; //www.gorselprogramlama.com
double sayi, toplam = 0, ort;
do
{//www.gorselprogramlama.com
Console.Write("Sayı Giriniz >>> ");
sayi = double.Parse(Console.ReadLine());
toplam += sayi;
sayac++;
} while (sayi != 0);
ort = toplam / sayac;//www.gorselprogramlama.com
Console.Write("Ortalama= {0}", ort);
Console.ReadKey();
}//www.gorselprogramlama.com
}
}
[/code]
