배열1 [ Java ] 배열 변수 선언: 타입[] 변수명 int[] myNum = {10, 20, 30, 40}; String[] cars = {"Volvo", "BMW", "Ford", "Mazda"}; System.out.println(cars[0]); // Outputs Volvo cars[0] = "Opel"; System.out.println(cars[0]); // Now outputs Opel instead of Volvo System.out.println(cars.length); // Outputs 4 배열과 for문 String[] cars = {"Volvo", "BMW", "Ford", "Mazda"}; // 1번 for (int i = 0; i < cars.length; i++) { System.out.printl.. 2023. 9. 13. 이전 1 다음