안녕하세요, 오늘은 회문 문자를 판별하는 프로그램을 만들어 보겠습니다. 회문 문자란 앞뒤로 나열해도 같은 문자를 말합니다. 즉, 일요일, 토마토 등이 회문 문자라 할 수 있습니다. 먼저, 소스코드입니다. import java.util.Scanner; public class P_5_3_2015103326 { public static void main(String[] args) { Scanner s = new Scanner(System.in); String ss; String tt = ""; int count, i; boolean run = true; boolean c; while(run == true) { System.out.println("Input(-1 for quit):"); ss = s.nextLi..