首页 > 编程语言 > 详细

c++对txt文件的读取与写入

时间:2014-11-22 01:56:28      阅读:232      评论:0      收藏:0      [点我收藏+]
#include <iostream>  
#include <iomanip>  
#include <fstream>  
  
using namespace std;  
  
int main(){  
char buffer[256];  
ifstream myfile ("c://a.txt");  
ofstream outfile("c://b.txt");  
  
if(!myfile){  
  cout << "Unable to open myfile";  
        exit(1); // terminate with error  
  
}  
if(!outfile){  
    cout << "Unable to open otfile";  
        exit(1); // terminate with error  
  
}  
int a,b;  
int i=0,j=0;  
int data[6][2];  
  while (! myfile.eof() )  
  {  
     myfile.getline (buffer,10);  
    sscanf(buffer,"%d %d",&a,&b);  
    cout<<a<<" "<<b<<endl;  
     data[i][0]=a;  
     data[i][1]=b;  
     i++;  
  }  
myfile.close();  
  for(int k=0;k<i;k++){  
      outfile<<data[k][0] <<" "<<data[k][1]<<endl;  
     cout<<data[k][0] <<" "<<data[k][1]<<endl;  
  }  
  
outfile.close();  
return 0;  
}  
  
  
  
  
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/dragonworrior/archive/2009/11/02/4759484.aspx  

 

c++对txt文件的读取与写入

原文:http://www.cnblogs.com/flyhigh1860/p/4114560.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!