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 three given integers. If the two values are same return the third value

C++ Basic Algorithm: Exercise-52 with Solution

Write a C++ program to compute the sum of three given integers. If the two values are same return the third value.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

int test(int x, int y, int z)
        {
            if (x == y && y == z) return 0;
            if (x == y) return z;
            if (x == z) return y;
            if (y == z) return x;
            return x + y + z;
        }
        
int main() 
 {
  cout << test(4, 5, 7) << endl;  
  cout << test(7, 4, 12) << endl;  
  cout << test(10, 10, 12) << endl;  
  cout << test(12, 12, 18) << endl;    
  return 0;    
}

Sample Output:

16
23
12
18

Pictorial Presentation:

C++ Basic Algorithm Exercises: Compute the sum of three given integers. If the two values are same return the third value.

Flowchart:

Flowchart: Compute the sum of three given integers. If the two values are same return the third value.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to compute the sum of two given non-negative integers x and y as long as the sum has the same number of digits as x. If the sum has more digits than x then return x without y.
Next: Write a C++ program to compute the sum of the three integers. If one of the values is 13 then do not count it and its right towards the sum.

What is the difficulty level of this exercise?