import java.io.*;
public class Test1 {
public static void main(String[] args) throws IOException{
String source = null;
String key = "";
//从键盘接受输入的一段话
BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));
source = reader.readLine();
key = "as"; //待统计出现频度的词语
int num = GetFrequency(source, key);
System.out.println(key + " 在这段话中出现的频度为 " + num);
}
public static int GetFrequency(String source,String key){
int i, j, count = 0;
int len1 = source.length(); //这段话的长雀拍余度
int len2 = key.length(); //顷滚贺和待统计词语的长度
for(i=0; i
break;
}
}
if(j>=key.length()){
count++;
}
}
return count;
}
}