首页 > 其他 > 详细

.从键盘录入一个字符串并统计指定字符串出现的次数

时间:2018-03-16 22:57:14      阅读:346      评论:0      收藏:0      [点我收藏+]
public class Demo3{
     public static void main(String [] args){
            int num = 0;
		int t = 0;
		Scanner sc = new Scanner(System.in);
		System.out.println("请输入一个字符串:");
		//存储键盘录入的字符串
		String n = sc.next();
		System.out.println("请输入需要查找的字符:");
		String s = sc.next();
		String [] Str = n.split(s);
		System.out.println(Str.length-1);
    }
}        

  

public class Demo3 {

	public static void main(String[] args) {
                 int num = 0;
		int t = 0;
		Scanner sc = new Scanner(System.in);
		System.out.println("请输入一个字符串:");
		//存储键盘录入的字符串
		String n = sc.next();
		System.out.println("请输入需要查找的字符:");
		String s = sc.next();
		for(int i=0;i<n.length();i++){
			 t = n.indexOf(s,i);
			if(t!=-1){
				num++;
				i=t;
			}
		}	
		System.out.println(num);
    }
}                

  

.从键盘录入一个字符串并统计指定字符串出现的次数

原文:https://www.cnblogs.com/zhou-jiayi/p/8586240.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!