A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区
传智教育官网黑马程序员官网
只需一步,快速开始
自信boy
中级黑马
黑马币:66
帖子:58
精华:0
© 自信boy 中级黑马 / 2016-8-20 20:53 / 519 人查看 / 2 人回复 / 0 人收藏 转载请遵从CC协议 禁止商业使用本文
/** * @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; } }