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月全勤卷王时空双修者题解仙人快乐小狗秩序白银
    22阅读
    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点赞
暂无数据

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

首页