반응형
배열을 역순으로 출력하기
package dataStructure;
public class ReverseArray {
public static void main(String[] args) {
//별도의 함수를 생성하지 않고 for 문 사용하기
int[] a = {1, 100, 29, 37, 55};
for(int i=0 ; i<a.length/2 ; i++) {
int max = a.length-1;
int tmp = a[i];
a[i] = a[max];
a[max] = tmp;
}
for(int i=0 ; i<a.length ; i++) {
System.out.println(a[i]);
}
}
}
반응형
'Back-End > Java' 카테고리의 다른 글
[Java] 이클립스 - UML (Class Diagram 클래스다이어그램) 사용방법 (0) | 2020.05.18 |
---|---|
[Java] 문자열 거꾸로 출력하기 (0) | 2020.03.08 |
[Java] 윤년과 평년 구하기 (0) | 2020.03.08 |
[Java] java.lang.Error: Unresolved compilation problem (0) | 2020.02.05 |
[Java] private 멤버 변수를 사용하는 이유 (0) | 2020.01.28 |
최근댓글