/**
* @author www.dadoubk.cn
*/
public class demo2 {
public static void main(String[] args) {
String A="qywyer23tdd";
char c=mother(A);
System.out.println(c);
}
private static char mother(String A) {
for (int i = 0; i < A.length(); i++)
if(A.substring(i+1).indexOf(A.charAt(i))!=-1)
return A.charAt(i);
return 0;
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |