从一段语句中查找某个单词的个数

节选:

    int i=0;
    int num1=0;//语句长度
    int num2=0;//单词长度
    while(sentence[i]!='\0'){
        num1++;
        i++;
    }
    i=0;
    while(word[i]!='\0'){
        num2++;
        i++;
    }
    i=0;
    int count=0;//查找的某个单词个数
    for(int i=0;i

你可能感兴趣的:(从一段语句中查找某个单词的个数)