CJCoding With Joseph

Replace Negatives with Zero

The array {3, -1, 4, -5, 2} is given. Replace every negative element with 0, leaving other elements unchanged, then print the array separated by single spaces:

3 0 4 0 2

There is no trailing space.

Expected Output:

3 0 4 0 2
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.