반응형
📖 문제
📃 코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
while (true) {
String s = br.readLine();
if (s.equals("0")) break;
boolean palindrome = true;
int front = s.length() / 2;
int length = s.length();
for (int i = 0; i < front; i++) {
if (s.charAt(length - (i + 1)) != s.charAt(i)) {
// caution palindrome != palindrome make double false => true
palindrome = false;
}
}
if (palindrome) System.out.println("yes");
else System.out.println("no");
}
}
}
🔗 링크
https://www.acmicpc.net/problem/1259
'Study & Project ✏️ > 알고리즘 📋' 카테고리의 다른 글
백준[JAVA] 9095.1, 2, 3 더하기 - 자바 (0) | 2022.11.02 |
---|---|
백준[JAVA] 1463.1로 만들기 - 자바 (0) | 2022.11.01 |
백준[JAVA] 11866.요세푸스 문제 0 - 자바 (0) | 2022.10.30 |
백준[JAVA] 10816.숫자 카드 2 - 자바 (0) | 2022.10.29 |
백준[JAVA] 11050.이항 계수 1 - 자바 (0) | 2022.10.23 |