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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

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

    userId_undefined

    雪球

    空间掌握者倔强青铜模拟·模拟练习生循环·循环打卡人字符串·魔法使
    28阅读
    1回复
    1点赞
  • 题解

    userId_undefined

    zsy

    题解仙人7月全勤卷王8月全勤卷王时空双修者秩序白银快乐小狗
    23阅读
    0回复
    0点赞
  • 直接AC

    userId_undefined

    复仇者_耈豕

    7月全勤卷王时间刺客空间掌握者出道萌新秩序白银
    6阅读
    0回复
    1点赞
  • 一只题解

    userId_undefined

    水牛🐃

    出道萌新空间掌握者题解仙人秩序白银
    1阅读
    0回复
    1点赞
  • 简单,直接一遍过

    #include<iostream> using namespace std; int main(){ int a; cin>>a; for(int i=1;i<=a;i++){ for(int o=1;o<=a;o++){ cout<<"*"; } cout<<endl; } return 0; }

    userId_undefined

    LS_YZY

    时空双修者倔强青铜题解仙人模拟·模拟练习生出道萌新快乐小狗
    6阅读
    0回复
    0点赞
  • AC

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

    userId_undefined

    CHN

    时间刺客循环·循环打卡人I/O·IO入门者
    3阅读
    0回复
    0点赞
  • 答案

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

    userId_undefined

    bobobobobobobobo

    倔强青铜
    3阅读
    0回复
    0点赞
  • tijie

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

    userId_undefined

    ༺ཌༀshenༀད༻

    I/O·IO入门者枚举·枚举小能手分支·分支解题者循环·循环打卡人
    1阅读
    0回复
    0点赞
  • tj

    userId_undefined

    240637 刘晓彤

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

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

    userId_undefined

    怪盗基德K

    循环·循环打卡人分支·分支解题者倔强青铜
    0阅读
    0回复
    0点赞
暂无数据

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

首页