题目
请编写一个函数fun,其功能是:统计一行字符串中单词的个数,作为函数值返回.规定单词由小写字母组成,单词之间允许若干个空格隔开.一行开始没有空格.
数字还有大写字母什么的不在统计范围里.
#include
#include
#define N 80
int fun( char *s)
{
}
main()
{ char line[N]; int num=0;
printf("Enter a string : "); gets(line);
num=fun( line );
printf("The number of word is :%d ",num);
}
数字还有大写字母什么的不在统计范围里.
#include
#include
#define N 80
int fun( char *s)
{
}
main()
{ char line[N]; int num=0;
printf("Enter a string : "); gets(line);
num=fun( line );
printf("The number of word is :%d ",num);
}
提问时间:2021-01-14
答案
int fun( char *s)
{
int i=1,c=0;
while(s[i]) //第一个字符是空格也无所谓,具体自己理解,
{
if(a[i]==&&a[i-1]!=)
c++;
i++;
}
return c;
}
{
int i=1,c=0;
while(s[i]) //第一个字符是空格也无所谓,具体自己理解,
{
if(a[i]==&&a[i-1]!=)
c++;
i++;
}
return c;
}
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
最新试题
- 1如果两个整数的和是42,这两个数的积可以整除925,求差
- 2什么时候才能用条形统计图,折扇统计图
- 3sin(x-兀/4)=10分之根号2 x属于(兀,4分之兀) 1.求sinx的值?2.cos(2x-6分之兀)的值?
- 4The young mother tried her best to make the baby safe afeter the accident.
- 5It was very hard for me to make a ____but I decided to leave my job.
- 6直角坐标系平面M(x1,y1)和N(x2,y2)两点之间距离公式MN=________.
- 7一望无际的大海 打一成语
- 8英语翻译
- 9I want you to type it again.什么时态?改成疑问句是什么?
- 10Call for Proposals什么意思
热门考点