본문 바로가기
반응형

백준12591

백준 1259 팰린드롬수 import java.util.* fun main(arg: Array) = with(Scanner(System.`in`)) { while(true){ val input = nextLine() if (input == "0") break println(if(input == input.reversed()) "yes" else "no") } } 2022. 9. 29.
반응형