C++ 如何添加两个数字
添加两个数字
学习如何在 C++ 中添加两个数字
使用用户输入添加两个数字
在这个例子中,用户必须输入两个数字。然后我们通过计算(添加)这两个数字来打印和。
示例
int x, y;
int sum;
cout << "输入一个数字: ";
cin >> x;
cout << "输入另一个数字: ";
cin >> y;
sum = x + y;
cout << "和是:" << sum;
运行示例 »
学习如何在 C++ 中添加两个数字
在这个例子中,用户必须输入两个数字。然后我们通过计算(添加)这两个数字来打印和。
int x, y;
int sum;
cout << "输入一个数字: ";
cin >> x;
cout << "输入另一个数字: ";
cin >> y;
sum = x + y;
cout << "和是:" << sum;
运行示例 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]