美文网首页我家丫头的cpp
CPP将文件写入txt中

CPP将文件写入txt中

作者: 李药师_hablee | 来源:发表于2019-03-27 10:55 被阅读0次
    //将文件写入txt中
     
    #include<iostream>
    #include<fstream>
    using namespace std;
    
    struct Box
    {
        int x;
        int y;
        int width;
        int height;
    };
    
    int main()
    {
        Box box[3] = 
        {
            {23,45,100,150
            },
            {34,90,25,25
            },
            {60,75,120,115
            }
        };
        ofstream fout("result.txt");
        if(!fout)
        {
            cout<<"文件打开失败!"<<endl;
            return -1;
        }
        for(int i=0;i<3;i++)
        {
            fout<<box[i].x<<"\t"<<box[i].y<<"\t"<<box[i].width<<"\t"<<box[i].height;
            fout<<endl;
        }
        fout.close();
        return 0;
    }
    

    相关文章

      网友评论

        本文标题:CPP将文件写入txt中

        本文链接:https://www.haomeiwen.com/subject/ukgavqtx.html