📅  最后修改于: 2023-12-03 15:27:37.590000             🧑  作者: Mango
在C++中,可以使用"+"运算符来对两个数字进行相加,下面是一个示例代码。
#include <iostream>
using namespace std;
int main() {
int a = 10;
int b = 20;
int result = a + b;
cout << "The sum of " << a << " and " << b << " is " << result << endl;
return 0;
}
首先,我们声明了两个整型变量a
和b
,并将它们分别赋值为10和20。然后,我们使用"+"运算符将它们相加,并将结果赋值给变量result
。最后,我们使用cout
语句将结果输出到屏幕上。
The sum of 10 and 20 is 30
这段代码的输出结果为The sum of 10 and 20 is 30
,证明了我们的程序成功实现了两个数字相加的功能。