CJCoding With Joseph

Pairs That Sum to Target

An array nums has been created with the values {10, 20, 30, 40, 50} and target = 60. Find every pair (i < j) whose values add up to target. Print each pair on its own line in the format 'a + b = target'.

Expected output:
10 + 50 = 60
20 + 40 = 60

Expected Output:

10 + 50 = 60
20 + 40 = 60
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.