在 C# 中,算术运算符用于执行基本的数学运算。以下是 C# 中常用的算术运算符及其说明和示例代码:
int a = 5;
int b = 3;
int sum = a + b;
Console.WriteLine(sum); // 输出 8
string str1 = "Hello";
string str2 = "World!";
string concatenatedStr = str1 + " " + str2;
Console.WriteLine(concatenatedStr); // 输出 "Hello World!"
int a = 5;
int b = 3;
int difference = a - b;
Console.WriteLine(difference); // 输出 2
int a = 5;
int b = 3;
int product = a * b;
Console.WriteLine(product); // 输出 15
int a = 10;
int b = 3;
float quotient = (float)a / b;
Console.WriteLine(quotient); // 输出 3.333333
int a = 10;
int b = 3;
int remainder = a % b;
Console.WriteLine(remainder); // 输出 1
int a = 5;
a++;
Console.WriteLine(a); // 输出 6
int a = 5;
a--;
Console.WriteLine(a); // 输出 4
以上是 C# 中常用的算术运算符及其示例代码。这些运算符可以用于执行基本的数学运算,以及字符串连接等操作。根据需要,您可以使用这些运算符进行各种数值计算和操作。