Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Compute the sum of the two given integer values

C++ Basic Algorithm: Exercise-1 with Solution

Write a C++ program to compute the sum of the two given integer values. If the two values are the same, then return triple their sum.

Sample Solution:

C++ Code :

#include <iostream>

using namespace std;

int test(int x, int y)
        {
            return x == y ? (x + y)*3 : x + y;
        }
        
        
int main() 
 {
  cout << test(1, 2) << endl;  
  cout << test(3, 2) << endl;  
  cout << test(2, 2) << endl;  
  return 0;    
}

Sample Output:

3
5
12

Pictorial Presentation:

C++ Basic Algorithm Exercises: Compute the sum of the two given integer values

Flowchart:

Flowchart: Compute the sum of the two given integer values

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: C++ Basic Algorithm Exercises Home
Next: Write a C++ program to get the absolute difference between n and 51. If n is greater than 51 return triple the absolute difference.

What is the difficulty level of this exercise?