1 条题解

  • 1
    @ 2025-10-3 11:05:43

    #include<bits/stdc++.h> using namespace std; int main(){ for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ cout<<i<<"x"<<j<<"="<<i*j<<" "; } cout<<endl; } }

    • 1

    信息

    ID
    950
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    163
    已通过
    60
    上传者