猿问

谁能帮我给每一行写上注释????

#include <stdio.h>  

//输入一行字符,统计其中有多少单词,单词之间用空格分隔开  

int main()  

{  

    int i,num=0,word=0;  

    char string[80];  

    char c;  

        gets(string);  

    for(i=0;(c=string[i])!='\0';i++)  

        if(c==' ')word=0;  

        else if(word==0)  

        {word=1;  

         num++;  

        }  

    printf("there is %d words in this line;\n",num);  

    return 0;  

}  


Evader念旧3484045
浏览 1284回答 3
3回答

SapereAudor

自己琢磨把注释写出来才体现出他的作用,程序是用来理解的不是用来看的

木柘

写下思路不就好了。

果果爱吃苹果

自己琢磨把注释写出来才体现出他的作用, 程序是用来理解的不是用来看的
随时随地看视频慕课网APP
我要回答