Advertisement
igovasconcelos

Untitled

Aug 25th, 2020
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. int max(int a, int b){
  2.   int tmp;
  3.   if ( a > b)
  4.     tmp = a;
  5.   else
  6.     tmp = b;
  7.  
  8.   return tmp;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement