배열리턴2 반복문 없이 2차원(다차원) 배열 출력하기 ( Arrays.deepToString(arr))- JAVA https://fall-in-dream.tistory.com/16 반복문 없이 배열 출력하기 ( Arrays.toString(arr))- JAVA 보통 배열을 출력하려고 하면 반복문을 사용하죠? 반복문을 사용한 출력 class Solution { public static void main(String args[]) throws Exception { int[] arr = {1, 2, 3, 4, 5, 6, 7, 8}; // 배열 선언 for(int i = 0; i < arr.length fall-in-dream.tistory.com 1차원 배열은 해결 완료!!! 그런데 2차원 배열을 출력할 때 Arrays.toString(arr); 을 사용하면 어떻게 될까요? class Solution { static Sc.. 2022. 12. 22. 반복문 없이 배열 출력하기 ( Arrays.toString(arr))- JAVA 보통 배열을 출력하려고 하면 반복문을 사용하죠? 반복문을 사용한 출력class Solution{ public static void main(String args[]) throws Exception { int[] arr = {1, 2, 3, 4, 5, 6, 7, 8}; // 배열 선언 for(int i = 0; i 결과물1 2 3 4 5 6 7 8 이렇게 할거라고 생각합니다.근데 혹시 함수에서 return 값으로 배열을 받아올 때, 이걸 어떡하지 생각한 적 있지 않으신가요? 함수에서 배열을 return 받았을 때class Solution{ static Scanner sc = new Scanner(System.in); public static void main(String args[]) throws.. 2022. 12. 22. 이전 1 다음