题目要求: 串1串2的复制粘贴 判断串1能否通过复制粘贴自身字符(次数无限制),形成串2。 public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num =sc.nextInt(); sc.nextLine(); for(int i=0;i<num;i++){ int flag=0; String str1 = sc.n...