-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtriplet.cpp
More file actions
42 lines (30 loc) · 870 Bytes
/
Copy pathtriplet.cpp
File metadata and controls
42 lines (30 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <bits/stdc++.h>
using namespace std;
bool find3Numbers(int A[], int arr_size, int sum)
{
int l, r;
for (int i = 0; i < arr_size - 2; i++)
{
for (int j = i + 1; j < arr_size - 1; j++)
{
for (int k = j + 1; k < arr_size; k++)
{
if (A[i] + A[j] + A[k] == sum)
{
cout << "Triplet is " << A[i] <<
", " << A[j] << ", " << A[k];
return true;
}
}
}
}
return false;
}
int main()
{
int A[] = { 12, 3, 4, 1, 6, 9 };
int sum = 24;
int arr_size = sizeof(A) / sizeof(A[0]);
find3Numbers(A, arr_size, sum);
return 0;
}