분류 전체보기76 2차원 배열에 값 넣기(Java) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public class arr { public static void main(String[] args) { int i, j, plus; int arr[][] = new int[5][5]; plus = 0; for (i = 0; i 2020. 7. 8. 배열 요소들 중 최소값 구하기(Java) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 public class minValue { public static void main(String[] args) { int[] arr = {7,8,5,4,2,9,1}; System.out.println("최소값 : " + findValue(arr)); } public static int findValue(int[] arr) { int minValue = arr[0]; for (int i = 1; i arr[i]) minValue = arr[i]; } return minValue; } } Colored by Color Scripter cs 출력 화면 2020. 7. 8. 배열 요소들 중 최대값 구하기(Java) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 public class maxValue { public static void main(String[] args) { int[] arr = {1, 10, 20, 30, 40, 50, 60, 70, 80, 90}; System.out.println("최대값 = " + findValue(arr)); } public static int findValue(int[] arr) { int maxValue = arr[0]; for (int i = 1; i 2020. 7. 8. 팩토리얼 구하기(Java) 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 import java.util.*; public class Facto { public static int fact(int a) { try { if (a == 0) { return 1; }else { return a*fact(a-1); } }catch (ArithmeticException e) { System.out.println("0이하의 수는 안됩니다!!"); } return a; } public static void main(String[] args) { int num = 1; Scanner scan= new Scanner(System.in); System.out.pr.. 2020. 7. 8. 이전 1 ··· 13 14 15 16 17 18 19 다음