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 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;

// Function to calculate a result based on the equality of two integers x and y
int test(int x, int y)
{
    return x == y ? (x + y) * 3 : x + y; // If x equals y, return the sum of x and y multiplied by 3. Otherwise, return the sum of x and y.
}

// Main function
int main() 
{
    cout << test(1, 2) << endl;  // Output the result of test function with arguments 1 and 2
    cout << test(3, 2) << endl;  // Output the result of test function with arguments 3 and 2
    cout << test(2, 2) << endl;  // Output the result of test function with arguments 2 and 2
    return 0;    // Return 0 to indicate successful execution of the program
}

Sample Output:

3
5
12

Visual 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?



Follow us on Facebook and Twitter for latest update.