CJCoding With Joseph

Replace Negatives with Zero

An array int nums[] = {3, -1, 4, -5, 2, -9} is given. Print all elements on one line separated by single spaces, but replace every negative value with 0. 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.