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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    userId_undefined

    ???

    空间掌握者题解仙人字符串·魔法使出道萌新GESP3级模拟·模拟练习生
    100阅读
    2回复
    2点赞
  • 数字三角形 题解

    userId_undefined

    skirmish

    BUG超度大师8月全勤卷王出道萌新时空双修者秩序白银快乐小狗
    53阅读
    0回复
    2点赞
  • 题解

    附带解析

    userId_undefined

    一只雪梨

    23阅读
    1回复
    1点赞
  • 9

    #include <iostream> #include <iomanip> using namespace std; int main() { int n; cin >> n; for (int i = 0; i < n; i++) { int t=1; for (int j = 0; j < n; j++) { if (i<=j) { cout<<setw(5)<<t; t++; } else cout <<" "; } cout << endl; } }

    userId_undefined

    ༺ཌༀ🤡摸头扫码ༀད༻互关

    出道萌新时间刺客空间掌握者时空双修者题解仙人字符串·魔法使
    14阅读
    0回复
    2点赞
  • 题解

    #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for (int i=1;i<=n;i++){ int cnt=1,c=n-i+1; for (int j=1;j<=i-1;j++) cout<<" "; while (c>0){ cout<<setw(5)<<cnt; cnt++; c--; } cout<<endl; } return 0; }

    userId_undefined

    人类

    分支·分支解题者时间刺客倔强青铜字符串·魔法使数组·数组操作员循环·循环打卡人
    18阅读
    0回复
    1点赞
  • 题解

    userId_undefined

    zyz610

    12阅读
    0回复
    1点赞
暂无数据

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

首页