前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >第六章第二十三题(指定字符的出现次数)(Occurrences of a specified character) - 编程练习题答案

第六章第二十三题(指定字符的出现次数)(Occurrences of a specified character) - 编程练习题答案

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

*6.23(指定字符的出现次数)使用下面的方法头编写一个方法,找到一个字符串中指定字符的出现次数。

public static int count(String str, char a)

例如,count(“Welcome”,‘e’)返回2。编写一个测试程序,提示用户输入一个字符串以及一个字符,显示该字符在字符串中出现的次数。

*6.23(Occurrences of a specified character)Write a method that finds the number of occurrences of a specified character in a string using the following header:

public static int count(String str, char a)

For example, count(“Welcome”, ‘e’) returns 2. Write a test program that prompts the user to enter a string followed by a character then displays the number of occurrences of the character in the string.

下面是参考答案代码:

代码语言:javascript
复制
// https://cn.fankuiba.com
import java.util.Scanner;

public class Ans6_23_page202 {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.print("Enter a string and a character: ");
        String aStr = input.next();
        char aChar = input.next().charAt(0);
        System.out.println(count(aStr,aChar));
    }
    public static int count(String str, char a) {
        int count = 0;
        for (int i = 0; i < str.length(); i ++) {
            if (str.charAt(i) == a)
                count++;
        }
        return count;
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/05/12 ,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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