class Program
{
static int toplama (int a,int b)
{
int toplama = (a + b);
return toplama;
}
static int çıkarma (int a,int b)
{
int çıkarma = (a - b);
return çıkarma;
}
static int çarpma (int a,int b)
{
int çarpma = (a * b);
return çarpma;
}
static int bölme (int a,int b)
{
int bölme = (a / b);
return bölme;
}
static void Main(string[] args)
{
int a, b, s1, s2, s3, s4;
Console.WriteLine("1.sayıyı gir: ");
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("2.sayıyı gir: ");
b = Convert.ToInt32(Console.ReadLine());
s1 = toplama(a, b);
s2 = çıkarma(a, b);
s3 = çarpma(a, b);
s4 = bölme(a, b);
Console.WriteLine("toplama {0}", s1);
Console.WriteLine("çıkarma {0}", s2);
Console.WriteLine("çarpma {0}", s3);
Console.WriteLine("bölme {0}", s4);
Console.ReadKey();
}
}
}
LÜTFEN YORUM YAPMAYI UNUTMAYINIZ....