为了账号安全,请及时绑定邮箱和手机立即绑定

求大神指导写一段代码

求大神指导写一段代码

a黄金罗奇 2016-04-20 09:28:44
when I was in the primary school ,I had a unforgetful thing between me and my teacher   通过java实现输入每个单词首字母,就可以找到这些单词。思路大概是用string字符串,通过空格将文章分成一个个字符串,然后检索其中首字母。 
查看完整描述

2 回答

已采纳
?
_潇潇暮雨

TA贡献646条经验 获得超225个赞

public class Test {


	public static int find(String[] arr,String keyword){
		 int count = 0; 
		 for(String s : arr)
			 if(s.startsWith(keyword))
				 ++count;
		 return count;
	}
	
	public static void main(String[] args) {
		
		String str = "when I was in the primary school ,I had a unforgetful thing between me and my teacher";
		
		String[] arr = str.split("\\s+,*"); 
		System.out.println(find(arr,"w")); // 2
		System.out.println(find(arr,"a")); // 2
		System.out.println(find(arr,"h")); // 1

	}

}


查看完整回答
2 反对 回复 2016-04-20
  • 2 回答
  • 1 关注
  • 1428 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信