1 条题解

  • 0
    @ 2025-7-15 17:00:55

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

    int main() { int n = 5; for(int i = 1; i <= n; i++) { for(int j = 1; j <= i ; j++) { cout << "*" } cout << endl; } return 0; }

    • 1

    信息

    ID
    256
    时间
    1000ms
    内存
    64MiB
    难度
    4
    标签
    递交数
    66
    已通过
    33
    上传者