用JAVA编程:::接收键盘输入的字符串,使用String类的方法indexOf()来统计该字符串中各个字符出现的

用JAVA编程:::接收键盘输入的字符串,使用String类的方法indexOf()来统计该字符串中各个字符出现的次数。... 用JAVA编程:::接收键盘输入的字符串,使用String类的方法indexOf()来统计该字符串中各个字符出现的次数。 展开
 我来答
丰箫笛8w
2013-12-24 · TA获得超过479个赞
知道小有建树答主
回答量:363
采纳率:0%
帮助的人:210万
展开全部
public class test {
public static void main(String[] args) {
InputStreamReader is = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(is);
try {
System.out.println("源字符串");
String searchFrom = br.readLine();
System.out.println("要查找的子字符串");
String searchBy = br.readLine();
int begin = 0;
int count = 0;
while (searchFrom.indexOf(searchBy) != -1) {
count++;
begin = searchFrom.indexOf(searchBy) + searchBy.length();
searchFrom = searchFrom.substring(begin);
}
System.out.println(count);
} catch (IOException e) {
e.printStackTrace();
}
}
}
琳大小姐520
推荐于2016-07-10 · TA获得超过141个赞
知道答主
回答量:144
采纳率:100%
帮助的人:59.2万
展开全部
System.out.println (str[i]); //输出以b打头的字母}System.out.println ("请输入字符串:"); BufferedReader in=new BufferedReader(new InputStreamReader(System.in)); String s=new String(in.readLine()); System.out.println ("大写形式:"); System.out.println (s.toUpperCase()); //输出大写形式 System.out.println ("小写形式:"); System.out.println (s.toLowerCase()); //输出小写形式 BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String s2=in.readLine(); int index=s2.indexOf(' '); String dst1=new String(s2.substring(0,index)); String dst2=new String(s2.substring(index+1,s2.length()));
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式