// program to display a 10x10 multiplication table // uses "for" loops instead of "while" loops #include #include #include using namespace std; int main() { int N=10; vector > mult(N,N); // this part is supposed to fill the 2D vector // it has problems - get it to work for (int i=0; i