See More

public class TPC07 { public static void main(String[] args) { int a=20; float b=56.7f; // a+b=? float v=sum(a,b); // Call By Value(°ª) System.out.println(v); // 76.7 int[] arr= {1,2,3,4,5}; // ¹è¿­ÀÇ ÃÑÇÕ=? int vv=arrSum(arr); // Call By Reference(¹øÁö) System.out.println(vv); // 15 } private static int arrSum(int[] x) { int hap=0; for(int i=0;i