acgo题库
  • 首页
  • 题库
  • 学习
  • 天梯
  • 备赛

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
  • 竞赛
  • 讨论
  • 团队
登录
注册
题目详情提交记录(0)
  • 题解

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

    userId_undefined

    死去的SPFA

    53阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    zsy

    题解仙人时空双修者BUG超度大师秩序白银快乐小狗
    45阅读
    0回复
    0点赞
  • 66666666666666

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

    userId_undefined

    zHANGhANfEI

    倔强青铜循环·循环打卡人I/O·IO入门者
    21阅读
    0回复
    0点赞
  • A30642.沙漏 题解

    userId_undefined

    skirmish

    8月全勤卷王BUG超度大师出道萌新时空双修者秩序白银快乐小狗
    5阅读
    0回复
    0点赞
暂无数据

提交答案之后,这里将显示提交结果~

首页