#include<iostream>
using namespace std;
int main()
{
int i, j;
cout << "BANG CUU CHUONG" << endl;
for (i = 1; i <= 9; i++)
{
for (j = 1; j <= 9; j++)
cout << i << " x " << j << " = " << i * j << endl;
cout << "------------*---------" << endl;
}
return 0;
}
Không có nhận xét nào:
Đăng nhận xét