Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. public class Test
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         int sum = 10;
  6.  
  7.         System.out.println(sum(1, 2));
  8.         System.out.println(sum(1, 2, 3));
  9.         System.out.println(sum(1, 2, 3, 4));
  10.     }
  11.  
  12.     public static int sum(int a, int b) { return a + b; }
  13.     public static int sum(int a, int b, int c) { return a + b + c; }
  14.     public static int sum(int a, int b, int c, int d) { return a + b + c + d; }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement