자가진단7 썸네일형 리스트형 [Java] 정올기초다지기 함수2-자가진단07 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 package 함수2.자가진단07; import java.util.Scanner; public class Main { public static void descending() { Scanner sc = new Scanner(System.in); int arr [] = new int [10]; for(int i=0;i 더보기 [Java] 정올기초다지기 함수1-자가진단07 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 package 함수1.자가진단07; import java.util.Scanner; public class Main { public static void main(String[] args) { int num1,num2 =0; Scanner sc = new Scanner(System.in); num1 = sc.nextInt(); num2 = sc.nextInt(); System.out.print(method1(num1,num2)+" "+method2(num1,num2)); sc.close(); } public static int method1(int a, int b) { a = (.. 더보기 [Java] 정올기초다지기 배열2-자가진단07 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 package 배열2.자가진단07; public class Main { public static void main(String[] args) { int [][] arr = new int [5][5]; for(int i=0;i 0) { arr[i][j] = arr[i-1][j]+arr[i][j-1]; } } } for(int i=0;i0&&j>0) i와j가 둘다 (and) 0보다 클경우(1행과1열이 아닐경우) 바로위 숫자와 바로전 숫자를 더하여준다. 더보기 이전 1 다음