📜  编写两个数字相加的代码 - C++ (1)

📅  最后修改于: 2023-12-03 15:27:37.590000             🧑  作者: Mango

编写两个数字相加的代码 - C++

在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;
}
代码说明

首先,我们声明了两个整型变量ab,并将它们分别赋值为10和20。然后,我们使用"+"运算符将它们相加,并将结果赋值给变量result。最后,我们使用cout语句将结果输出到屏幕上。

代码输出
The sum of 10 and 20 is 30

这段代码的输出结果为The sum of 10 and 20 is 30,证明了我们的程序成功实现了两个数字相加的功能。