C# Toplama Çıkarma Çarpma Bölme Nasıl Yapılır. | CONSOLE |

1Enjoy

Forward
Owner
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

6DjNzl.png


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

003zJY.png
 

Top