Xâu đối xứng n phần tử
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ import java.io.FileInputStream; import java.io.FileNotFoundException; import java.util.Scanner; /** * * @author Le Thi Tuyet */ public class Solution { /** * @param args the command line arguments */ public static void main(String[] args) throws FileNotFoundException { // TODO code application logic here System.setIn(new FileInputStream("input.txt")); int testcase = 1; Scanner sc = new Scanner(System.in); for(int i=0; i<testcase; i++){ String s = sc.ne...