C ++将数据导出到特定的Excel列

时间:2017-03-29 12:05:04

标签: c++ csv xls

我需要将数据列输出到Excel工作表中的连续列(如果csv等,则不会打扰)。

程序输出两列很好,但是我需要迭代输出x多个列。

例如。 x=50; print << time << '\t' << price1 << endl; //然后还输出x = 48列。 for (x=2; x<=50; x++) { print << '\t'*x << price_x << endl;}

0 个答案:

没有答案