Problem Statement
Write a function void checkSign(int n) that determines if a number is positive, negative, or zero.
If n is greater than 0, print "Positive".
If n is less than 0, print "Negative".
If n is 0, print "Zero".
Output should be followed by a newline.