|
|
От: | WolfHound | |
| Дата: | 22.04.03 18:56 | ||
| Оценка: | 2 (1) | ||
std::vector<std::vector<double> > arr;
arr.reserve(10);
for(int i=0;i<10;++i)
{
arr.push_back(std::vector<double>());
for(int j=0;j<10;++j)
arr[i].push_back(j);
}