CONSOLE UYGULAMALARI etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
CONSOLE UYGULAMALARI etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

25 Mart 2014 Salı

girilen 2 sayının toplamını veren program

string x, y;
            Console.WriteLine("HOŞGELDİNİZ: ");
            Console.Write("1. sayıyı giriniz ");
            x = Console.ReadLine();
            Console.WriteLine("2.sayıyı giriniz: ");
            y = Console.ReadLine();
            Console.WriteLine("{0} + {1} = {2} ", x, y, (Convert.ToInt16(x) + Convert.ToInt16(y)));

            Console.ReadKey();

verilen 2 sayının toplama,çıkarma,çarpma ve bölünmesi

int x = 10;
            int.y = 5;
            Console.WriteLine("x + y = {0}", x + y);
            Console.WriteLine("x - y = {0}", x - y);
            Console.WriteLine("x * y = {0}", x * y);
            Console.WriteLine("x / y = {0}", x / y);
            Console.ReadKey();

alınan eşyanın kdvli fiyatını veren c# program

 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();