Int64 a, toplam;
string ad;
Console.Write("Lütfen Ad soyad Giriniz = ");
ad = Console.ReadLine();
Console.Write("Hoşgeldin = " + ad);
Console.Write(" Lütfen alişveriş tutar girin = ");
a = Int64.Parse(Console.ReadLine());
toplam = a+ (a * 18 / 100);
Console.Write(ad+" Ödeyeceğin Kdvli Fiyatı =" + toplam);
Console.ReadKey();
Hiç yorum yok:
Yorum Gönder