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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    userId_undefined

    zsy

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

    #include<bits/stdc++.h> using namespace std; int a[6][6]; int main(){ for(int i=0;i<6;i++){ for(int j=0;j<6;j++){ cin>>a[i][j]; } } for(int i=0;i<6;i++){ for(int j=0;j<6;j++){ if(ij||i+j5){ a[i][j]+=10; } cout<<a[i][j]<<" "; } cout<<endl; } return 0; }

    userId_undefined

    曹汇煦

    空间掌握者维度操控者格式·格式排版员循环·循环打卡人分支·分支解题者数组·数组操作员
    16阅读
    1回复
    1点赞
  • xzygcjhgvjkfgnh.com/

    #include<iostream> using namespace std; int a[105][105]; int main(){ for(int i=1;i<=6;i++){ for(int j=1;j<=6;j++) { cin>>a[i][j]; } }

    userId_undefined

    一架放襟翼的A380

    11阅读
    1回复
    1点赞
  • 题解:

    #include<iostream> using namespace std; int a[6][6]; int main(){ for(int i=0;i<6;i++){ for(int j=0;j<6;j++){ cin>>a[i][j]; } } for(int i=0;i<6;i++){ for(int j=0;j<6;j++){ if(ij || i+j6-1){ cout<<a[i][j]+10; }else{ cout<<a[i][j]; } cout<<" "; } cout<<endl; } }

    userId_undefined

    帅炸的我

    倔强青铜
    1阅读
    0回复
    1点赞
  • 题解

    非常简单 #include<bits/stdc++.h> using namespace std; int main(){ int a[10][10]; for(int i=0;i<6;i++){ for(int j=0;j<6;j++){ cin>>a[i][j]; if(ij||i+j5){ a[i][j]+=10; } cout<<a[i][j]<<' '; } cout<<"\n"; } return 0; }

    userId_undefined

    天麓-ENFP🔪陈梓睿

    小有名气7月全勤卷王时空双修者倔强青铜
    4阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    LS_YZY

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

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

首页