解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
int main()
{
char a[2000];
int i,count=0,s=0;
gets(a);
for(i=0;i<strlen(a);i++)
{
if(a[i]!=' ')
count++;
else
{
if(s==0)
{printf("%d",count);s++;}
else
{printf(",%d",count);}
count=0;
i++;
while(a[i]==' ')
i++;
i--;
}
}
if(a[strlen(a)-1]!=' ')
printf(",%d",count);
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:783 |
小明A+B (C语言代码)浏览:1316 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:591 |
文科生的悲哀 (C语言代码)浏览:1538 |
核桃的数量 (C语言代码)浏览:893 |
上车人数 (C语言代码)浏览:752 |
小O的图案 (C语言代码)浏览:979 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:608 |
C二级辅导-温度转换 (C语言代码)浏览:575 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:461 |