欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

牛客网问题

程序员文章站 2023-12-26 15:40:21
...

//    输入 字符串的第一个只出现一次的字符
        
//        输入一个非自发字符串 
//        输出第一个只出现一次额字符,如果不存在输出-1
    

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()) {
            String str=sc.next();
            int n=str.length();
            for (int i=0;i<n;i++){
                 
                char ch=str.charAt(i);
                String s=ch+"";
                if ((n-str.replaceAll(s,"").length())==1){
                    System.out.println(str.charAt(i));
                    break;
                }
            }
        }
    }
}

 

上一篇:

下一篇: