Guest User

Untitled

a guest
Jul 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. int method( int a, int b, int c ) {
  2. int result = a;
  3.  
  4. if ( a + b > c ) {
  5. result = a + b;
  6. }
  7.  
  8. return result;
  9. }
Add Comment
Please, Sign In to add comment