Nayeemzaman

Untitled

Oct 6th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a;
  5. scanf("%d",&a);
  6.  
  7. if(a>0)
  8. printf("Positive Number\n");
  9. else if(a<0)
  10. printf("Negetive Number\n");
  11. else
  12. printf("Zero\n");
  13. return 0;
  14. }
Add Comment
Please, Sign In to add comment