17 条题解

  • 0
    @ 2025-5-23 13:22:07

    #include using namespace std; int main() { int n; cin >> n; for(int i = 1; i <= n; i++) { for(int j = 1; j <= n - i; j++) { cout << " "; } for(int j = 1; j <= n; j++) { cout << "@"; } cout << endl; } return 0; }

    信息

    ID
    955
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    739
    已通过
    302
    上传者