1. int[] 배열 채우기
1
2
3
4
5
6
7
8
9
|
public static void main(String[] args) {
int[] a = new int[5];
Arrays.fill(a, 100);
for(int i : a) {
System.out.print(i +" ");
}
}
|
cs |
2. int[][] 이차원 배열 채우기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public static void main(String[] args) {
int[][] b = new int[5][5];
for(int i = 0; i < b.length; i++) {
Arrays.fill(b[i], 100);
}
//출력
for(int[] i : b) {
for(int j : i) {
System.out.print(j +" ");
}
System.out.println();
}
}
|
cs |
모르셨던 분들에게 도움이 됐으면 합니다.
반응형
'프로그래밍 언어 > JAVA(자바)' 카테고리의 다른 글
[자바/java] Map, HashMap - key, value 값 가져오기(feat. Set, Iterator) (0) | 2020.09.03 |
---|---|
[자바/java] Set, HashSet 사용법 데이터 삽입, 삭제, 출력 (0) | 2020.09.01 |
[자바/java] 순서대로 저장, 출력하는 HashMap - LinkedHashMap 사용하기 (0) | 2020.08.28 |
[자바/java] int[] 배열 내림차순 정렬 (Integer[] 배열없이) (0) | 2020.05.21 |
[자바/java] Arrays.stream을 이용해 배열 최소값 찾고 응용해보기 (0) | 2020.05.06 |