CPP将文件写入txt中

//将文件写入txt中
 
#include
#include
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<<"文件打开失败!"<

你可能感兴趣的:(CPP将文件写入txt中)