欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

北邮 BOJ 132 打印字符串

程序员文章站 2024-03-07 22:56:09
...

北邮 BOJ 132 打印字符串

思路:

水题

解答:

package bupt;

import java.util.Scanner;

/*
*@author:Totoro
*@createDate:2020年3月18日下午7:27:26
*/
public class 打印字符串
	{

	public static void main(String[] args)
		{
		Scanner cin=new Scanner(System.in);
		int t=cin.nextInt();
		int pos,n;
		char cr;
		String s;
		while(t--!=0)
			{
			cr=cin.next().charAt(0);
			s=cin.next();
			pos=s.indexOf(cr);
			n=0;
			while(pos!=-1)
				{
				pos=s.indexOf(cr,pos+1);
				++n;
				}
			System.out.println(n);
			}
		}

	}

相关标签: BOJ