#P86. 【例16.1】 判断数正负
Related
In following homework:
Given an integer N, determine if it is positive, zero, or negative. If N>0, output positive; if N=0, output zero; if N<0, output negative.
One integer N (−109≤N≤109).
If N>0, output positive;
If N=0, output zero;
If N<0, output negative.
1positive
In following homework: