using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication15
{
class Program
{
static void Main(string[] args)
{
int vize,toplam,ortalama;
toplam = 0;
Console.WriteLine("40 kişilik sınıfta klavyeden girilen notların ortalamasını yazan C# kodu");
for (int i = 1; i <= 40; i++)
{
Console.Write(i+ ".Öğrencinin Vize Notunu Giriniz : ");
vize = int.Parse(Console.ReadLine());
toplam = toplam + vize;
}
ortalama = toplam / 40;
Console.Write("Girilen Notların Ortalaması :" + ortalama);
Console.ReadKey();
}
}
}
SEARCH
SON PAYLAŞIMLAR
3-latest-65px
ETİKETLER
- 5. Sınıf 1. Dönem (8)
- 5. Sınıf BTY (8)
- 6. Sınıf BTY (1)
- Kişisel (3)
- Lise (9)
- Scratch (11)
- Üniversite - C# (39)
Hiç yorum yok:
Yorum Gönder