美文网首页
HWOJ找出字符串中第一个只出现一次的字符

HWOJ找出字符串中第一个只出现一次的字符

作者: Yuu_CX | 来源:发表于2017-02-18 10:41 被阅读0次
import java.util.Scanner; 
   
public class Main {  
   
    public static void main(String[] args) { 
        Scanner sc = new Scanner(System.in); 
        boolean b = false;
        String str = sc.nextLine();
        char[] cs = str.toCharArray();
        for(int i = 0; i < cs.length; i++){
            if(str.indexOf(cs[i]) == str.lastIndexOf(cs[i])){
                System.out.println(cs[i]);
                b = true;
                break;
            }
        }
        if(!b){
            System.out.println('.');
        }
        sc.close(); 
    } 
}

相关文章

网友评论

      本文标题:HWOJ找出字符串中第一个只出现一次的字符

      本文链接:https://www.haomeiwen.com/subject/pgyrwttx.html