6.20(計算一個字元串中字母的個數)編寫一個方法,使用下麵的方法頭計算字元串中的字母個數: public static int countLetters(String s) 編寫一個測試程式,提示用戶輸入字元串,然後顯示字元串中的字母個數。 6.20(Count the letters in a ...
*6.20(計算一個字元串中字母的個數)編寫一個方法,使用下麵的方法頭計算字元串中的字母個數:
public static int countLetters(String s)
編寫一個測試程式,提示用戶輸入字元串,然後顯示字元串中的字母個數。
*6.20(Count the letters in a string) Write a method that counts the number of letters in a string using the following header:
public static int countLetters(String s)
Write a test program that prompts the user to enter a string and displays the number of letters in the string.
下麵是參考答案代碼:
import java.util.Scanner;
public class Ans6_20_page201 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter : ");
String s = input.nextLine();
System.out.println("The number of letters is "+ countLetters(s));
}
public static int countLetters(String s) {
int count = 0;
for (int i = 0;i < s.length();i++) {
if (Character.isLetter(s.charAt(i)))
count++;
}
return count;
}
}
適用Java語言程式設計與數據結構(基礎篇)(原書第11版)Java語言程式設計(基礎篇)(原書第10/11版)
更多內容