2 条题解

  • 1
    @ 2026-7-7 9:57:55

    #include <bits/stdc++.h> using namespace std;

    int main() { int n; cin >> n; for (int i = 1; i <= n; i++) { for (int j = 1; j <= i; j++) { cout << "*"; } cout << endl; }

    return 0;
    

    }

    • @ 2026-7-7 9:58:39

      大家快给我的题解点赞OVO

信息

ID
30072
时间
1000ms
内存
256MiB
难度
9
标签
递交数
8
已通过
7
上传者