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: Find the number of pairs of integers in a given array of integers whose sum is equal to a specified number

C++ Array: Exercise-27 with Solution

Write a C++ program to find the number of pairs of integers in a given array of integers whose sum is equal to a specified number.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;
int main()
{
    int array1[] = {1, 5, 7, 5, 8, 9, 11, 12};
    int s1 = sizeof(array1)/sizeof(array1[0]);

    cout << "Original array: ";
    
    for (int i=0; i < s1; i++) 
    cout << array1[i] <<" ";
    
    int i, sum = 12, ctr = 0;
    cout <<"\nArray pairs whose sum equal to 12: ";
    
    for (int i=0; i<s1; i++)
        for (int j=i+1; j<s1; j++)
            if (array1[i]+array1[j] == sum)
              {
                cout << "\n" << array1[i] << "," << array1[j];
                ctr++;
              }
 
    cout <<"\nNumber of pairs whose sum equal to 12: ";
    cout << ctr;
    
    return 0; 
}

Sample Output:

Original array: 1 5 7 5 8 9 11 12 
Array pairs whose sum equal to 12: 
1,11
5,7
7,5
Number of pairs whose sum equal to 12: 3

Flowchart:

Flowchart: Find the number of pairs of integers in a given array of integers whose sum is equal to a specified number

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to find and print all unique elements of a given array of integers.
Next: Write a C++ program to arrange the numbers of a given array in a way that the sum of some numbers equal the largest number in the array.

What is the difficulty level of this exercise?