美文网首页菜鸟学Java
输入一个长度不超过30的字符串然后再输入一个字符输出该字符在字符

输入一个长度不超过30的字符串然后再输入一个字符输出该字符在字符

作者: DotJay | 来源:发表于2020-04-16 15:24 被阅读0次
    import java.util.*;
    public class Main {
        public static void main(String[] args) {
            // TODO code application logic here
            Scanner shuru=new Scanner(System.in);
            String shen;
            shen=shuru.nextLine();
            char [] a;
            a = shen.toCharArray();
            char x;
            int y=0;
            x = shuru.next().charAt(0);
            for(int i=0;i<a.length;i++)
            {
                if(a[i]==x)
                {
                    y++;
                }
                else
                {
                    ;
                }
            }
            System.out.println(y);
        }
    }
    

    相关文章

      网友评论

        本文标题:输入一个长度不超过30的字符串然后再输入一个字符输出该字符在字符

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