在使用setw
和gotoxy
使其对齐之前,我对表存在一些问题,但是如果我使用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();
}
请帮助我创建表格