#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; }
调试截图:
时间: 2024-10-13 04:52:02