#include #include #include "apvector.h" int main(){ apvector< apvector > L(5); for(int i = 0; i < 5; i++) L[i].resize(5); for(int i = 0; i < 5; i++) for(int j = 0; j < 5; j++) L[i][j] = i*j; for(int i = 0; i < 5; i++){ for(int j = 0; j < 5; j++) cout << L[i][j] << " "; cout << endl; } return EXIT_SUCCESS; }