CGallardo

MaxMin

Feb 13th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include "maxmin.h"
  2.  
  3. float maximo (float a, float b)
  4. {
  5. if(a>b)
  6. return a;
  7. else
  8. return b;
  9. }
  10.  
  11. float maximo (float a, float b)
  12. {
  13. if(a>b)
  14. return b;
  15. else
  16. return a;
  17. }
Add Comment
Please, Sign In to add comment