博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单词计数的简单C代码
阅读量:6471 次
发布时间:2019-06-23

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

一步一步向前走。。。

希望能多看,多写,多想,多得。。。

代码:

1 #include 
2 #include
3 4 #define IN 1 5 #define OUT 0 6 int main(int argc, char *argv[]) 7 { 8 int c, nl, nw, nc, state; 9 10 state = OUT;11 nl = nw = nc = 0;12 while ((c = getchar()) != EOF) {13 ++nc;14 if ( c == '\n')15 ++nl;16 if (c == ' ' || c == '\n' || c == '\t')17 state = OUT;18 else if (state == OUT){19 state = IN;20 ++nw;21 }22 }23 printf("new char number is : %d\n",nc);24 printf("new line number is : %d\n",nl);25 printf("new word number is : %d\n",nw);26 27 system("PAUSE"); 28 return 0;29 }

 

截图:

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

你可能感兴趣的文章
LINUX 重定向的知识
查看>>
ssh登陆不需要密码
查看>>
ARP
查看>>
java mkdir()和mkdirs()区别
查看>>
桌面支持--excel自动换行
查看>>
虚拟化--003 vcac licence -成功案例
查看>>
windows server 2003各版本及2008各版本的最大识别内存大小
查看>>
OSChina 周六乱弹 ——揭秘后羿怎么死的
查看>>
centos查找未挂载磁盘格式化并挂载
查看>>
IT人员的职业生涯规划
查看>>
sorry,you must have a tty to run sudo
查看>>
ios开发中使用正则表达式识别处理字符串中的URL
查看>>
项目中的积累,及常见小问题
查看>>
Python类型转换、数值操作(收藏)
查看>>
注释书写格式
查看>>
SQL Server 中 EXEC 与 SP_EXECUTESQL 的区别
查看>>
2013=7=30 自增量的浅谈
查看>>
oracle11g dataguard 安装手册(转)
查看>>
java并发包分析之———Deque和LinkedBlockingDeque
查看>>
1. Two Sum - Easy - Leetcode解题报告
查看>>