c++怎么向程序中添加读取txt文件的功能

日期:2015-06-07 13:22:59 人气:1

c++怎么向程序中添加读取txt文件的功能

#include #include using namespace std;int main(){ ifstream fin("outfile.txt"); char ch[100]; fin>>ch; cout<<ch; ofstream fout("outfile.txt"); fout<<"abcdefg"; return 0;}直接用ifstream流类
    A+
热门评论