Advertisement
mcnealk

3.2 #16

Sep 26th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class Sixteen
  2. {
  3. public static void main (String[] args)
  4. {
  5. min(3, -2, 7);
  6. }
  7. public static int min(int x, int y, int z)
  8. {
  9. int i=Math.min(x, y, z);
  10. System.out.print(i);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement