1 条题解

  • 0
    @ 2025-1-25 13:43:09

    #include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for (int x=1;x<=n;x++){ for (int y=1;y<=x;y++){ cout << y << "" << x << "=" << xy << " "; } cout << endl; } return 0; }

    信息

    ID
    983
    时间
    1000ms
    内存
    128MiB
    难度
    6
    标签
    递交数
    23
    已通过
    11
    上传者