C# 如何添加两个数字


两个数字相加

了解如何在 C# 中将两个数字相加:

示例

int x = 5;
int y = 6;
int sum = x + y;
Console.WriteLine(sum); // Print the sum of x + y

亲自试一试 »