728x90
1. for문 이용하기
public static void main(String[] args) {
String str = "ABCDEF";
for(int i=str.length()-1; i>=0; i--) {
System.out.print(str.charAt(i));
}
}
2. Reverse() 함수 이용하기
public static void main(String[] args) {
String str = "ABCDEF";
StringBuffer sb = new StringBuffer();
sb.append(str);
System.out.println(sb.reverse());
}
728x90
'ETC > 📋 Coding Tests' 카테고리의 다른 글
[프로그래머스] 분수의 덧셈 (0) | 2023.04.03 |
---|---|
[프로그래머스] 등수 매기 (0) | 2023.03.31 |
[알고리즘] 소수 구하기 (0) | 2020.08.22 |
[알고리즘] 369 게임 (2) | 2020.08.21 |
[알고리즘] 구구단 출력 (0) | 2020.08.21 |