博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C语言统计一个字符串中单词的个数
阅读量:6822 次
发布时间:2019-06-26

本文共 486 字,大约阅读时间需要 1 分钟。

假定每一个单词用空格隔开。

样例:

输入:how are you!

输出:3

两种方法:

一:

#include 
#include
#define SIZE 20int main(){ char str[SIZE]={'\0'}; int count=0; printf("please input the string\n"); gets(str); puts(str); int length = strlen(str); for (int i=0;i
另外一种:

#include 
#include
#define SIZE 20int main(){ char str[SIZE]={'\0'}; int count=0; int flag=0; printf("please input the string\n"); gets(str); puts(str); int length = strlen(str); for (int i=0;i

转载地址:http://seozl.baihongyu.com/

你可能感兴趣的文章
实施行政审批流程系统程组件的经验总结,规范化电子化流程管理(有点儿长,准备好茶叶)...
查看>>
Ubuntu 全球 CDN 更新源
查看>>
VMbox复制虚拟机后网卡问题-bring up interface eth0:Device eth0 does not seem to be present
查看>>
UC browser对CSS的支持小结——手机网站CSS小结
查看>>
android 安装应用到SD卡上
查看>>
centos6中的mysql主从复制
查看>>
逐行新闻滚动效果
查看>>
python apply函数的用法
查看>>
vuejs12综合实例
查看>>
thinkphp-limit
查看>>
Spring4-自动装配Beans-通过注解@Autowired在Set方法上
查看>>
我的友情链接
查看>>
让浏览器变身编辑器
查看>>
CentOS安装tomcat及运行方式
查看>>
Codeforces 768D:Jon and Orbs
查看>>
xtrabackup如何备份mysql数据库
查看>>
VMware中centos7无法共享文件夹的问题
查看>>
【C#】listview应用
查看>>
源代码防泄密、图纸防泄密
查看>>
shell
查看>>