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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情题解(0)讨论(0)提交记录(0)
  • C++题解,AC拿下!

    userId_undefined

    Jason-JHT

    分支·分支解题者倔强青铜I/O·IO入门者递归·套娃学徒
    57阅读
    0回复
    1点赞
  • 大型纪录片

    #include<bits/stdc++.h> using namespace std; int main() { cout<<"11= 1 21= 2 31= 3 41= 4 51= 5 61= 6 71= 7 81= 8 91= 9"<<endl; cout<<"22= 4 32= 6 42= 8 52=10 62=12 72=14 82=16 92=18"<<endl; cout<<"33= 9 43=12 53=15 63=18 73=21 83=24 93=27"<<endl; cout<<"44=16 54=20 64=24 74=28 84=32 94=36"<<endl; cout<<"55=25 65=30 75=35 85=40 95=45"<<endl; cout<<"66=36 76=42 86=48 96=54"<<endl; cout<<"77=49 87=56 97=63"<<endl; cout<<"88=64 98=72"<<endl; cout<<"9*9=81"<<endl; return 0; }

    userId_undefined

    账号已注销

    11阅读
    1回复
    3点赞
  • 还浪费我一次看答案的机会

    py: 懒得写C++了,凑活着看吧

    userId_undefined

    MuktorFM

    出道萌新时间刺客时空双修者荣耀黄金CSP-S二等奖出题人
    29阅读
    0回复
    0点赞
  • 题解

    userId_undefined

    zsy

    出道萌新时间刺客时空双修者题解仙人7月全勤卷王秩序白银
    25阅读
    0回复
    0点赞
  • 麦克阿瑟

    #include<iostream> using namespace std; int main(){ for(int i=1;i<=9;i++){ for(int j=i;j<=9;j++){ if(ji<=9){ cout<<j<<''<<i<<'='<<' '<<ij<<' '; }else{ cout<<j<<''<<i<<'='<<i*j<<' '; } } cout<<endl; } return 0; }

    userId_undefined

    账号已注销

    6阅读
    0回复
    1点赞
  • 回收旧手机 旧冰箱 旧彩电 旧电脑

    #include<bits/stdc++.h> using namespace std; int main() { for(int i=1;i<=9;i++) { for(int j=i;j<=9;j++) { if(ji<=9) { cout<<j<<''<<i<<'='<<' '<<ij<<' '; } else { cout<<j<<''<<i<<'='<<i*j<<' '; } } cout<<endl; } return 0; }

    userId_undefined

    入机

    0阅读
    0回复
    0点赞
首页