标题:[求助]统计代码行数的程序问题
只看楼主
wen2204
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2007-7-18
 问题点数:0 回复次数:2 
[求助]统计代码行数的程序问题

程序功能是统计文件c:\\test.txt代码的行数,用VC++编译没有错误,可是屏幕上只是显示了“the all line is:”
大侠们帮我解答一下啊
#include<stdio.h>
#include<stdlib.h>
void main()
{
FILE *fp;
char ch;
int line=0; /*line为代码的行数*/
if((fp=fopen("c:\\test.txt","r+"))==NULL)
{
printf("cannot open the file\n");
exit(1);
}

ch=fgetc(fp);/*将文件中代码依次读出*/

while(!feof(fp))
{
if(ch=='\n') /*如果是回车符,则代码行加1*/
line++;
}

printf("the all line is:%d",line);
fclose(fp);
}

搜索更多相关主题的帖子: 代码 line 统计 
2007-07-18 19:37
星星鱼虾蟹
Rank: 1
等 级:新手上路
帖 子:191
专家分:0
注 册:2007-6-2
得分:0 
#include <stdio.h>
#include<stdlib.h>
void main()
{
FILE *fp;
char ch;
int line=0; /*line为代码的行数*/
if((fp=fopen("c:\\test.txt","r+"))==NULL)
{
printf("cannot open the file\n");
exit(1);
}
while(!feof(fp))
{
ch=fgetc(fp);/*将文件中代码依次读出*/
if(ch=='\n') /*如果是回车符,则代码行加1*/
line++;
}
printf("the all line is:%d",line);
fclose(fp);
}
帮你改了一下,原来你的算法有点问题

2007-07-18 19:44
wen2204
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2007-7-18
得分:0 

谢谢你了,问题已经解决了,呵呵


2007-07-18 20:02



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-156378-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.132774 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved