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

1Enjoy

Forward
Owner
Joined
Jul 29, 2019
Topics
39
Messages
1,082
Solutions
141
Reaction score
6,372
Location
Behind You
Website
realitycheats.com
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
 

Rooster

only business
Legend Member
Joined
Aug 10, 2019
Topics
727
Messages
3,206
Solutions
314
Reaction score
4,922
Location
Milano
Yararlı konu
 

Top