24 Mart 2015 Salı

C# Klavyeden girilen iki değere dört işlem yaptırma (Siyah Ekran)





Kodları:

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

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            double x, y;
            double toplama, cikartma, carpma, bolme;
            Console.Write("Lütfen X Değerini Giriniz = ");
            x = Convert.ToInt32(Console.ReadLine());
            Console.Write("Lütfen Y Değerini Giriniz = ");
            y = Convert.ToInt32(Console.ReadLine());
            toplama = x + y;
            cikartma = x - y;
            bolme = x / y;
            carpma = x * y;
            Console.WriteLine("x+y = " + toplama);
            Console.WriteLine("x-y = " + cikartma);
            Console.WriteLine("x/y = " + bolme);
            Console.WriteLine("x*y = " + carpma);
            Console.Write("Programdan Çıkmak İçin Enter'e Basınız");
            Console.ReadKey();
        }
    }
}


Hazırlayan:Adil AYGÜN

Hiç yorum yok: