【C++】c++写Excel文件

	ofstream oufSave;
	oufSave.open("a.xls");
	if (!oufSave)
	{
		return;
	}				
	//写TAB键为\t,写换行为endl;
	oufSave<<"11111"<<"\t"<<"sssss"<<endl;  
	oufSave<<"222"<<endl;


你可能感兴趣的:(【C++】c++写Excel文件)