//凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/
#include<stdio.h>
#define N 1000
void main(){
char en[N][];
int i,j,num=,n,state;
//num 用来统计单词的个数
//state 用来记录程序当前是否处于一个单词之中,初值为0,表示不在单词中,值为1,表示正处于在一个单词中 printf("Please input the number of lines for English passage:");
scanf("%d",&n); //输入英语短文的行数
getchar(); //吸收回车符 for(i=;i<n;i++){
gets(en[i]); //输入英语短文
}
for(i=;i<n;i++){
state=; //设每行的开始都是单词的开始
for(j=;en[i][j]!='\0';j++){
if(en[i][j]==' '){
state=; //判断 en[i][j] 是否为空格字符
}
else if(state==){
state=;
num++;
}
}
}
printf("The number of words is %d\n",num);
}
结果为: