Study & Project ✏️/알고리즘 📋

백준[JAVA] 1259.팰린드롬수 - 자바

JM 2022. 10. 30. 00:51
반응형

📖 문제

📃 코드

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

 

1259번: 팰린드롬수

입력은 여러 개의 테스트 케이스로 이루어져 있으며, 각 줄마다 1 이상 99999 이하의 정수가 주어진다. 입력의 마지막 줄에는 0이 주어지며, 이 줄은 문제에 포함되지 않는다.

www.acmicpc.net