MeehoweCK

Untitled

Nov 5th, 2020
1,757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int higher(int a, int b)
  6. {
  7.     if(a >= b)
  8.         return a;
  9.     return b;
  10. }
  11.  
  12. int main()
  13. {
  14.     cout << higher(19, 117) << endl;
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment