JAVA编程问题,一个简单的小程序
4个回答
展开全部
用字符串替换的方法,比较长度
import java.util.Scanner;
public class $ {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
String key = "word";
System.out.print("输入字符串");
String str = in.next();
int len = str.length();
str = str.replaceAll(key, "");
int count = (len - str.length()) / key.length();
System.out.println(count);
}
}
展开全部
提供伪代码,自己研究
Pattern p = Pattern.complince("word");
Matcher m = str.matcher(p);
while(m.group()){
count ++
}
system.out.print(count);
Pattern p = Pattern.complince("word");
Matcher m = str.matcher(p);
while(m.group()){
count ++
}
system.out.print(count);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不知道这样行不行
import java.util.Scanner;
public class A {
public static void main(String[] args) {
String key = "word";
System.out.println("输入:");
String str = new Scanner(System.in).nextLine();
System.out.println(str.replaceAll(key, key + " ").split(key).length - 1);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
字符串.indexOf("word")用while循环
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询