โ Back to Arrays
Question 395
Concatenate Two Arrays
Concatenate Two Arrays
Two arraysa = {1, 2, 3}andb = {4, 5, 6}are given. Build a single array that contains all ofafollowed by all ofb, then print it on one line separated by single spaces: 1 2 3 4 5 6 The result length isa.length + b.length. Copyafirst, thenb.
Expected Output:
1 2 3 4 5 6
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.