Sagot :
using System;
public class Program
{
public static void Main()
{
int ort,toplam = 0;
for(int i = 0; i < 5; i++){
int sira = i+1;
Console.WriteLine(sira+". kişinin yaşını giriniz : ");
toplam = toplam + Convert.ToInt32(Console.ReadLine());
}
ort = toplam / 5;
Console.WriteLine("5 kişinin yaşları ortalaması : "+ort);
}
}
şeklinde basit bir şekilde yapılabilir.
Dilerseniz yaşları bir dizide veyahut değişkenlerde de tutabilirsiniz.
Thank you for visiting our website wich cover about Bilgisayar. We hope the information provided has been useful to you. Feel free to contact us if you have any questions or need further assistance. See you next time and dont miss to bookmark.