acgo题库
  • 首页
  • 题库
  • 题单
  • 竞赛
  • 讨论
  • 排行
  • 团队
  • 备赛专区

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情题解(0)讨论(0)提交记录(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

    雪球

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

    userId_undefined

    zsy

    题解仙人时间刺客空间掌握者时空双修者贪心·贪心尝试者秩序白银
    19阅读
    0回复
    0点赞
  • 简单,直接一遍过

    #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

    时空双修者数组·数组操作员分支·分支解题者I/O·IO入门者循环·循环打卡人倔强青铜
    6阅读
    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

    老邓头━╋════════➢

    倔强青铜
    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

    54188唱跳rap篮球

    1阅读
    0回复
    0点赞
  • tj

    userId_undefined

    240637 刘晓彤

    1阅读
    0回复
    0点赞
首页