标签: 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;}
x=50;
print << time << '\t' << price1 << endl;
for (x=2; x<=50; x++) { print << '\t'*x << price_x << endl;