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

2017-02-18  本文已影响0人  Yuu_CX
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(); 
    } 
}
上一篇 下一篇

猜你喜欢

热点阅读