Als pdf oder txt herunterladen
Als pdf oder txt herunterladen
Sie sind auf Seite 1von 2

Nama : Alan suwandi

kelas : TI 18 B
NPM : 18313062

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tugas_saya
{
class Program
{
static void Main(string[] args)
{
string nama;
int nilai, npm;

Console.Write("Masukkan Nama Mahasiswa : ");


nama = Console.ReadLine();
Console.Write("Masukkan NPM : ");
npm = int.Parse(Console.ReadLine());
Console.Write("Masukkan Nilai : ");
nilai = int.Parse(Console.ReadLine());

if (nilai >= 80)


{
Console.WriteLine("Nilai A");
}
else if (nilai >= 70)
{
Console.WriteLine("Nilai B");
}
else if (nilai >= 60)
{
Console.WriteLine("Nilai C");
}
else if (nilai >= 50)
{
Console.WriteLine("Nilai D");
}
else
{
Console.WriteLine("Nilai E");
}

Console.ReadKey();

}
}
}

Das könnte Ihnen auch gefallen