1 2 3 4 5 6 7 8 9 10 11 12
#include <iostream> #include <iomanip> using namespace std; int main() { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= 9; j++) cout << ' ' << setw(2) << setfill('0') << (i * j); cout << endl; } }