C# 两个数如何相加

两个数字相加

学习如何在 C# 中两个数字相加:

实例

int x = 5;
int y = 6;
int sum = x + y;
Console.WriteLine(sum); // 打印 x + y 的总和

运行实例 »