C# 如何将两个数字相加
两个数字相加
了解如何在 C# 中将两个数字相加:
三个数字相加
在 C# 中,你可以添加三个(或更多)数字:
例子
// This example demonstrates adding three numbers in C#
// Declaration of variables
int num1 = 10;
int num2 = 20;
int num3 = 30;
// Adding three numbers
int sum = num1 + num2 + num3;
// Outputting the result
Console.WriteLine("The sum of three numbers: " + sum);
你会看见:
The sum of three numbers: 60
示例解释:
- 在此示例中,我们声明三个 int 类型(整数)的变量,分别名为 num1、num2 和 num3。
- 接下来,我们使用 + 运算符将这三个变量的值相加。
- 加法的结果存储在变量 sum 中。
- 最后,我们使用 Console.WriteLine() 方法将 sum 变量的值输出到控制台。
变化:
- 您可以将变量 num1、num2 和 num3 的值更改为任何其他数字。
- 您可以使用附加运算符 + 将更多数字添加到总和中。
- 您可以使用其他类型的变量,例如 float(浮点数)或 double(双精度数)。
- 此示例只是 C# 中数字相加的基本示例。还有许多其他方法可以完成此任务。