Advertisement
dzieciol

Laboratorium III Zadanie 1

Nov 23rd, 2015
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. int a,b;
  7. printf("wpisz 2 liczb całkowite:\n");
  8. scanf("%d%d", &a,&b);
  9. if (a>b)
  10. printf("a > b");else
  11. if (a<b)
  12. printf("a < b");
  13. else
  14. printf("a = b");
  15.  
  16.  
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement