c语言实现,统计一句英文句子中某个单词出现的次数。

日期:2016-03-17 13:13:21 人气:1

c语言实现,统计一句英文句子中某个单词出现的次数。

#include int FindWord(char*,char*); void main() { char allstr[100]; char findstr[20]; puts("input all word:"); gets(allstr); puts("input one word:"); gets(findstr); printf(" number of %s is :%d\n",fin
    A+
热门评论