I find that a piece of graph paper helps, so I can draw what I want the output to look like and count character cells, etc.
You will probably also want to #include <iomanip> and use the setw() manipulator.
Now, so you know why for the negative-ish responses, it is because "help" doesn't mean we do the work for you. You can do this easily in an hour or so. If you get stuck, come back and post your code and where you are having trouble, and we'll help you through it.
#include <iostream>
usingnamespace std;
int main() {
for (int a = 1; a < 12; a++) {
for (int b = 1; b < 12; b++) {
cout << a << " x " << b << " = " << a * b;
}
}
return 0;
}
I haven't tested it but it's simple enough. I hope this is what you were asking for, the question wasn't very clear...