CJCoding With Joseph

Replace Negatives with Zero

Given the array {3, -1, 4, -5, 9}, change every negative element to 0, then print the array on one line separated by spaces:

3 0 4 0 9

Expected Output:

3 0 4 0 9
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.