CJCoding With Joseph

Double Each Element

An array nums has been created with the values {10, 20, 30, 40, 50}. Print each element multiplied by 2, on one line separated by single spaces.

Expected output:
20 40 60 80 100

Expected Output:

20 40 60 80 100
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.