InterviewSolution
Saved Bookmarks
| 1. |
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 |
| 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: | |