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

Hiç yorum yok:

Yorum Gönder