โ Back to Arrays
Question 425
Replace Negatives with Zero
Replace Negatives with Zero
An arrayint nums[] = {3, -1, 4, -5, 2, -9}is given. Print all elements on one line separated by single spaces, but replace every negative value with0. Do not print a trailing space: 3 0 4 0 2 0 End the line with a newline.
Expected Output:
3 0 4 0 2 0
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.