1 Star 1 Fork 0

那么彼时彼刻/demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
统计一行文本的单词个数.cpp 322 Bytes
一键复制 编辑 原始数据 按行查看 历史
那么彼时彼刻 提交于 2019-06-10 23:35 . 6/10
#include <stdio.h>
int main()
{
int i=0,n;
char str[1000];
gets(str);
while (str[i]==' ') i++;
while (str[i]!='\0')
{
if (str[i]!=' ')
{
n++;
while(str[i]!=' ')
{
if(str[i]=='\0') break;
i++;
}
}
else
{
while(str[i]==' ') i++;
}
}
printf("%d\n",n);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/cy--8730/ctmdd.git
git@gitee.com:cy--8730/ctmdd.git
cy--8730
ctmdd
demo
master

搜索帮助