โ Back to Arrays
Question 242
Element-wise Sum of Two Arrays
Element-wise Sum of Two Arrays
Two int arrays of the same length are given. Print a single line where each position holds the sum of the matching elements from the two arrays, separated by single spaces.
For a = {1, 2, 3} and b = {10, 20, 30} the program prints:
11 22 33Expected Output:
11 22 33
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.