我知道要创建一个多维向量,您需要像这样编写它
std::vector< std::vector <int> > name;
std::vector<int> firstVector;
firstVector.push_back(10);
numbers.push_back(thisVector);
std::cout << numbers[0][0]
输出为 10。
但是我正在尝试创建三种不同类型的表。第一列是字符串,第二列是整数,第三列是双精度数。
该表的输出看起来像这样
One 200 5.1%
Three 10 1.4%
Nine 5000 10.8%