Computer Science, asked by Anonymous, 11 months ago

good morning guys sorry to all my frnds coz i have deleted fb.... for some days...

Question : write a program to ckeck positive, negative, zero or input is non numeric​

Answers

Answered by Pakcricket1000
1

Answer:

Logic to check positive, negative or zero

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.

Explanation:

Similar questions