Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <cs50.h>
  2. #include <stdio.h>
  3.  
  4.  
  5. int main(void);
  6.  
  7. int x = get_int ("x: ");
  8. int y = get_int("y: ");
  9.  
  10. if (x < y);
  11. {
  12. printf("x is less than yn");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement