手機也能上課

1/8
運算符
運算符是執(zhí)行數(shù)學或邏輯操作的符號。
算術(shù)運算符
C#支持以下算術(shù)運算符:
使用示例
int x = 10;
int y = 4;
Console.WriteLine(x-y);
//Outputs 6