1. 程式人生 > >12.15作業2

12.15作業2

編寫一個程式,實現從命令列引數輸入一字串,統計該字串中字元“e”出現的次數

package Text6;

import java.util.Scanner;

public class Zuoye2 {

	
		// 編寫一個程式,實現從命令列引數輸入一字串,統計該字串中字元“e”出現的次數
		public static void main(String[] args) {
		
			Scanner sc = new Scanner(System.in);
			System.out.println("請輸入一串字串:");
			String str = sc.nextLine
(); STR(str); } private static void STR(String str) { String str1 = "e"; int a = 0; for(int i = 0;i < str.length();i++){ if (str.charAt(i) == 'e'){ a++; } } System.out.println("字串中e出現"+a+"次"); } }