โ Back to Arrays
Question 107
Double Each Element and Print
Double Each Element and Print
An array called nums has already been created for you with the values {10, 20, 30, 40, 50}.
Your task is to use the for loop to print each element multiplied by 2. Each result should appear on its own line.
You do NOT need to change the array itself: just print the doubled value. Inside the loop, print nums[i] * 2.
Expected output:
20
40
60
80
100Expected Output:
20 40 60 80 100
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.