C ++程序加两个数字

加法是一种基本的算术运算。加两个数字的程序执行两个数字的加法并在屏幕上打印它们的总和。

给出了两个数字相加的程序,如下所示:

示例

#include <iostream>
using namespace std;
int main() {
   int num1=15 ,num2=10, sum;
   sum = num1 + num2;
   cout<<"Sum of "<<num1<<" and "<<num2<<" is "<<sum;
   return 0;
}

输出结果

Sum of 15 and 10 is 25

在上面的程序中,两个数字的和(即15和10)以可变和的形式存储。

sum = num1 + num2;

之后,它使用cout对象显示在屏幕上。

cout<<"Sum of "<<num1<<" and "<<num2<<" is "<<sum;

一个使用数组存储两个数字及其和的程序如下:

示例

#include <iostream>
using namespace std;
int main() {
   int a[3];
   a[0]=7;
   a[1]=5;
   a[2]=a[0] + a[1];
   cout<<"Sum of "<<a[0]<<" and "<<a[1]<<" is "<<a[2];
   return 0;
}

输出结果

Sum of 7 and 5 is 12

在上面的程序中,要添加的数字存储在数组的0和1索引中。

a[0]=7;
a[1]=5;

之后,总和存储在数组的2索引中。

a[2]=a[0] + a[1];

该总和使用cout对象显示在屏幕上。

cout<<"Sum of "<<a[0]<<" and "<<a[1]<<" is "<<a[2];