4 条题解

  • 3
    @ 2023-4-20 23:07:56

    image

    • 0
      @ 2025-8-19 15:29:51

      • -3
        @ 2024-7-26 11:36:26

        #include<bits/stdc++.h> using namespace std; int main(){ int n=5; cin>>n; for(int i=0;i<n;i++) for(int j=0;j<n;j++) cout<<" "; for(int j=0;j<n;j++){ if(i0 or in-1) cout<<""; else if(j0 or jn-1) cout<<""; else cout<<" "; } cout<<endl; return 0; } ``

        • -4
          @ 2023-5-7 10:59:15

          #include using namespace std; int main(){ int n; cin>>n; for(int i=0;i<n;i++){ for(int j=0;j<n-i;j++) cout<<" "; for(int j=0;j<n;j++){ if(i0 or in-1) cout<<""; else if(j0 or jn-1) cout<<""; else cout<<" "; } cout<<endl; } return 0; }

          • 1

          信息

          ID
          594
          时间
          1000ms
          内存
          256MiB
          难度
          5
          标签
          (无)
          递交数
          32
          已通过
          14
          上传者