如何在C ++中制作表格并从.txt文件获取数据

时间:2019-06-01 15:11:43

标签: c++ ifstream ofstream

在使用setwgotoxy使其对齐之前,我对表存在一些问题,但是如果我使用thats 2,则无法从.txt读取数据

这是使用没有表的gotoxy

std::string line;
    ifstream file("stok.txt");
    if(file.is_open()){
        while(getline(file,line))
        {
            gotoxy(12,2);
            cout<<line<<'\n';
        }
        file.close();
    }else
     cout<<"file tidak terbuka"<<'\n';
     std::cin.get();
    }

请帮助我创建表格

0 个答案:

没有答案