C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

C++で++演算子を使用して2つの数値を追加します。


プログラミングでは、++演算子は、オペランドの値を1ずつ増やすインクリメント演算子です。この演算子を使用して、数値a、bに1を何度も加算することにより、2つの数値を加算できます。

例、

Input: a = 31 , b = 4
Output: 35

説明 − 1を31に4回加算すると、合計は31 + 1 + 1 + 1 + 1=35になります。

アルゴリズム

Input: two integers a and b.
Step 1: loop from 0 to b and follow step 2.
Step 2: add 1 to b.
Step 3: print the value of a.

#include <iostream>
using namespace std;
int main(){
   int x = 324 , y= 76;
   cout<<"The sum of "<<x<<" & "<<y;
   if(y>0){
      for(int i= 0; i<y;i++){
         x++;
      }
   } else {
      for(int i= y; i<0;i++){
         x--;
      }
   }
   cout<<" is "<<x;
   return 0;
}

出力

The sum of 324 & 76 is 400

  1. 2つの数値を交換するC++プログラム

    2つの数値を交換するプログラムを作成する方法は2つあります。 1つは一時変数を使用することを含み、2番目の方法は3番目の変数を使用しません。これらは次のように詳細に説明されています- 一時変数を使用して2つの数値を交換するプログラム 一時変数を使用して2つの数値を交換するプログラムは次のとおりです。 例 #include <iostream > using namespace std; int main() {    int a = 10, b = 5, temp;    temp = a;    a = b; &nbs

  2. 2つの数値を追加するC++プログラム

    加算は基本的な算術演算です。 2つの数値を加算するプログラムは、2つの数値の加算を実行し、それらの合計を画面に出力します。 2つの数字の加算を示すプログラムは次のとおりです- 例 #include <iostream> using namespace std; int main() {    int num1=15 ,num2=10, sum;    sum = num1 + num2;    cout<<"Sum of "<<num1<<" and &q