Susri

assignment 1

Oct 8th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int x;
  5.     scanf("%d",&x);
  6.     if(x>0)
  7.     {
  8.         printf("positive");
  9.     }
  10.     else if(x<0)
  11.     {
  12.         printf("negative");
  13.     }
  14.     else
  15.     {
  16.         printf("zero");
  17.     }
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment