编写一个程序,实现从命令行参数输入一字符串, 统计该字符串中字符“e”出现的次数。(识点:String中常用的方法)

public class test2 {

public static void main(String[] args)throws ParseException {

// TODO Auto-generated method stub

method1();

}

public static void method1(){

Scanner sc=new Scanner(System.in);

System.out.println("输入一个字符串");

String a=sc.next();

int num=0;

char b = 0;

for(int i=0;i

b=a.charAt(i);

System.out.print(b+" ");

if(b=='e'){

num+=1;

}

}

System.out.println();

System.out.println(num);

}

}

你可能感兴趣的:(编写一个程序,实现从命令行参数输入一字符串, 统计该字符串中字符“e”出现的次数。(识点:String中常用的方法))