在C#中,基本算术运算符包括以下内容−
在C#中,基本算术运算符包括以下内容 − 要进行加法运算,使用加法运算符 − 同样地,它适用于减法、乘法、除法和其他运算符。 让我们看一个完整的示例来学习如何在C#中实现算术运算符。 实时演示 以上是C#程序执行所有基本算术运算的详细内容。更多信息请关注PHP中文网其他相关文章!C#程序执行所有基本算术运算
运算符
描述
+
将两个操作数相加
-
从第一个操作数中减去第二个操作数
*
将两个操作数相乘
/
将分子除以分母
%
取模运算符和整数除法后的余数
++
递增运算符将整数值增加一
--
递减运算符将整数值减少一
num1 + num2;
示例
using System;
namespace Sample {
class Demo {
static void Main(string[] args) {
int num1 = 50;
int num2 = 25;
int result;
result = num1 + num2;
Console.WriteLine("Value is {0}", result);
result = num1 - num2;
Console.WriteLine("Value is {0}", result);
result = num1 * num2;
Console.WriteLine("Value is {0}", result);
result = num1 / num2;
Console.WriteLine("Value is {0}", result);
result = num1 % num2;
Console.WriteLine("Value is {0}", result);
result = num1++;
Console.WriteLine("Value is {0}", result);
result = num1--;
Console.WriteLine("Value is {0}", result);
Console.ReadLine();
}
}
}
输出
Value is 75
Value is 25
Value is 1250
Value is 2
Value is 0
Value is 50
Value is 51