Advertisement
kosmontin

2.4

Jan 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class Main {
  2.     public static int moreLess(int a, int b) {
  3.         if (a < b) return a;
  4.         return b;
  5.     }
  6.  
  7.     public static void main(String[] args) {
  8.         System.out.println(moreLess(moreLess(8,9), moreLess(7,2)));
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement