- Joined
- Jul 29, 2019
- Messages
- 1,039
- Solutions
- 129
- Reaction score
- 5,705
Değişkenleri Değiştirebilirsiniz veya readkey ile kullanıcıdan sayı istiyebilirsiniz
C#:
using System;
namespace Operatorler
{
class DortIslem
{
static void Main(string[] args)
{
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();
}
}
}