Computer Science, asked by jyotipunjabi281, 2 days ago

WAP to accept a number and check it is a Positive Number, Negative Number or zero.
Please bro help me

Answers

Answered by shaikhanique9890
0

Answer:

Input a number from user in some variable say num . Check if(num < 0) , then number is negative. Check if(num > 0) , then number is positive. Check if(num == 0) , then number is zero.

Similar questions