• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

c读取文本文档

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 想数一下文本文档一共有多少行,写了个小程序

1.用fopen()以只读方式打开文件

2.用fgetc()获取文件流中的字符内容

3.如果字符内容为'\n'换行符,count++

最后输出count的值

 1 #include <iostream>
 2 #include <string>
 3 #include <stdlib.h>
 4 #include <stdio.h>
 5 
 6 
 7 using namespace std;
 8 
 9 //void swap(int, int);
10 
11 int main(){
12     FILE *fp = NULL;
13     char a;
14     fp = fopen("C:\\Documents and Settings\\Administrator\\桌面\\isotree.txt", "r");
15     int count = 0;
16 
17     if(NULL != fp){
18         do{
19             a = fgetc(fp);
20     //        printf("%c", a);
21             if(a == '\n')
22             {
23                 count ++;
24             }
25         }while(a != EOF);
26     }
27     
28     fclose(fp);
29     
30     cout<<"count line:"<<count<<endl;
31 
32     return 0;
33 }

这里主要是打开文件,读取文件内容的方法使用

Ps:路径的时候注意使用转义字符\


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
wslubuntu配置c++环境发布时间:2022-07-13
下一篇:
c语言libcurl使用实例get/post方法+c语言字符串处理发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap