软件工程个人第二小项目——wc
2018-06-18 03:59:04来源:未知 阅读 ()
github源码和工程文件地址:https://github.com/HuChengLing/wc
基本要求:要实现wc的基本功能即文件中字符数、单词数、行数的统计。
主要功能:文件中字符数、单词数、行数的统计和注释行统计。
设计思想:将文件中的一行字符读完来统计行数,然后运用字符数组再去分别统计字符数和单词数。
程序代码:
#include<stdlib.h> #include<stdio.h> #include<string> void signalcount(char *Filename); void main() { int c = 0, w = 0, l = 0; int signline = 0; FILE *fp; char fileName[80]; char ch[1024]; //bool inword = false;//字符在单词中,inward等于ture printf("please input fileName:"); gets_s(fileName); fp = fopen(fileName, "r"); if (fp == NULL) { printf("can't open file %s\n", fileName); getchar(); exit(1); } while (!feof(fp)) { fgets(ch, 1024, fp); l++; int length = strlen(ch); for (int i = 0; i < length; i++) { //判断是不是空格不是的话在while里面i++执行判断到下一个空格的出现或是结束 if (ch[i] != ' ') { w++; //if ((ch[i] > '0'&&ch[i]<'9' || ch[i]>'a'&&ch[i], 'z' || ch[i] > 'A'&&ch[i] < 'Z') && ch[i] != ' ') //c++; while (ch[i] != ' '&&ch[i] != '\0') { if ((ch[i] > '0'&&ch[i]<'9' || ch[i]>'a'&&ch[i], 'z' || ch[i] > 'A'&&ch[i] < 'Z') && ch[i] != ' '&&ch[i] != '\n') c++; i++; } } } } printf("一共有:%d行 %d个单词 %d个字符", l, w, c); signalcount(fileName); fclose(fp); system("pause"); } void signalcount(char *filename) { int len = 0, i = 0,signline = 0; FILE *fp; char str[1000]; fp = fopen(filename, "r"); if (fp == NULL) { printf( "请在文件中添加内容\n") ; exit(-1); } while (!feof(fp)) { fgets(str, sizeof(str), fp); len = strlen(str); for (i = 0; i<len; i++) { if ((str[i] == '/'&&str[i + 1] == '/') || (str[i] == '/'&&str[i + 1] == '*')) { signline++; break; } } } fclose(fp); printf( "注释行数%d行\n", signline); }
自己虽然是自己写了一些但是自己也借鉴了许多网上的代码。而且现在还存在着不能读汉字的bug有待改进。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 2020年04月25日个人赛 2020-04-29
- 2020年04月19日个人赛 2020-04-23
- 2020年04月12日个人赛 2020-04-18
- 第二章 类和对象基础 2020-04-04
- 软件工程第三次作业 2020-03-30
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash