返回列表 發帖
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    for(int a=1;a<=9;a++)
    {
        for(int b=1;b<=9;b++)
        {
                cout<<a<<"*"<<b<<"="<<a*b<<"\t";
                }
        }
    system("pause");
    return 0;   
}

TOP

返回列表