前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >第六章第二十题(计算一个字符串中字母的个数)(Count the letters in a string) - 编程练习题答案

第六章第二十题(计算一个字符串中字母的个数)(Count the letters in a string) - 编程练习题答案

作者头像
无刺鱼
发布2022-03-29 13:10:13
2120
发布2022-03-29 13:10:13
举报
文章被收录于专栏:许唯宇

*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.

下面是参考答案代码:

代码语言:javascript
复制
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;
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/05/09 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档