大聪明程序员


私信TA

用户名:dotcpp0707958

访问量:249

签 名:

等  级
排  名 36273
经  验 418
参赛次数 0
文章发表 7
年  龄 0
在职情况 学生
学  校 哔哩哔哩大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:import java.util.Scanner;

public class Main {
   public static void main(String[] args) {
       Scanner sc=new Scanner(System.in);
       String str=sc.next();
       boolean exist=false;
       // 创建一个长度为26的数组,用于记录每个字母出现的次数
       int[] count = new int[26];
       for (int i = 0; i < str.length(); i++) {
           count[str.charAt(i) - 'a']++;
       }
       // 再次遍历字符串,找到第一个出现次数为1的字符
       for (int i = 0; i < str.length(); i++) {
           if (count[str.charAt(i) - 'a'] == 1)
           {
               System.out.println(str.charAt(i));
               exist=true;
               break;
           }
       }
       if(exist==false){
           System.out.println("no");
       }
   }
}

 

0.0分

1 人评分

  评论区

  • «
  • »