โ Back to Arrays
Question 310
Scale Array by Three
Scale Array by Three
The array{1, 2, 3, 4}is given. Multiply every element by3, then print the array separated by single spaces: 3 6 9 12 The printing loop is already written. There is no trailing space.
Expected Output:
3 6 9 12
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.