Advertisement
rdsedmundo

[obi] avioes.c

Apr 21st, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.         // nรบmero de competidores, folhas compradas, folhas para cada um
  6.         int a, b, c;
  7.  
  8.         scanf("%d %d %d", &a, &b, &c);
  9.  
  10.         if(a*c > b) printf("N");
  11.         else
  12.         printf("S");
  13.         return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement