2012年8月24日
摘要: #include <stdio.h>#include <stdlib.h>/*统计文件内容行数、单词数、字符数格式:可执行文件名 -l -w -c 数据文件列表*/int main(int argc, char* argv[]){ FILE* fp; int lflag, wflag, cflag; //l w c 3个标志 int line, word; //行内与单词内标志 int lcount, wcount, ccount; //统计变量 char *s; int c; if (argc < 2) //参数个数不够 { printf ... 阅读全文
posted @ 2012-08-24 12:35 Try86 阅读(859) 评论(0) 推荐(0) 编辑