โ Back to Arrays
Question 95
Print All on One Line with Spaces
Print All on One Line with Spaces
An array called nums has already been created for you with the values {10, 20, 30, 40, 50}.
Your task is to print all elements on a single line, separated by spaces.
Instead of using endl after each element, print a space character between them. You can use cout << nums[i] << " " inside the loop to print each element followed by a space.
Expected output:
10 20 30 40 50 Expected Output:
10 20 30 40 50
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.