web123456

How to write a nine-nine multiplication table in c++

int main()
{
    int i,j,t;
    for(i=1;i<=9;i++)
    {
        for(j=1;j<=i;j++)
        {
            t=j*i;
            cout<<j<<"*"<<i<<"="<<t<<"  ";
            
        }
        cout<<endl;
        
    }
    
    ~system("pause");
    return 0;
}
#endif