zoukankan      html  css  js  c++  java
  • 第十七章,txt文件的写入和读取数据结合练习(C++)

    #include <iostream>
    #include <fstream>
    
    int main(int argc, char** argv) {
    	std::string str; 
    	
    	//--------1.向文件里写入数据-------- 
    	 
    	std::cout<<"请输入您希望输入的数据。按“回车”键结束。"<<std::endl;
    	std::cin>>str; 
    	//没有这个文件,会自己主动创建 
    	std::ofstream outfile("e:\123.txt",std::ios::app);
    	//写入到文件里 
    	outfile<<str;
    	//一定要关闭 
    	outfile.close(); 
    	
    	//--------2.从文件里读取数据--------- 
    	 
    	std::ifstream infile("e:\123.txt");
    	char cs[1024];
    	//从文件里读取 
    	std::cout<<"文件里的数据为:"<<std::endl; 
    	while(infile>>cs){
    		//输出 
    		std::cout<<cs<<std::endl;
    	}
    	//关闭 
    	infile.close(); 
    	
    	return 0;
    }

    调试截图:




  • 相关阅读:
    javaSE第十五天
    javaSE第十四天
    javaSE第十三天
    javaSE第十二天
    javaSE第十一天
    javaSE第十天
    javaSE第九天
    python011 Python3 字典
    python010 Python3 元组
    python009 Python3 列表
  • 原文地址:https://www.cnblogs.com/zfyouxi/p/5346919.html
Copyright © 2011-2022 走看看