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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    userId_undefined

    zsy

    出道萌新7月全勤卷王时间刺客时空双修者题解仙人秩序白银
    25阅读
    0回复
    2点赞
  • 消息数量

    #include <iostream> using namespace std; int a,b; int main(){ cin>>a>>b; if(a<=1&&a>=-1&&b<=1&&b>=-1)cout<<"yes"; else cout<<"no"; return 0; }

    userId_undefined

    小潘同学(能打过橙子同学)

    出道萌新空间掌握者循环·循环打卡人数组·数组操作员题解仙人
    9阅读
    0回复
    3点赞
  • 题解

    #include<iostream> using namespace std; int main(){ long long a; cin>>a; if(a<=99){ cout<<a; return 0; } cout<<"99+"; return 0; }

    userId_undefined

    LS_YZY

    出道萌新时空双修者数组·数组操作员题解仙人倔强青铜模拟·模拟练习生
    11阅读
    0回复
    0点赞
  • # 官方题解|欢乐赛#46 T2

    2.消息数量 思路分析 本题考查分支语句。对于消息数量不超过99的,直接输出消息数量;对于消息数量超过99的输出"99+"。用if - else 判断一下即可。 代码分析

    userId_undefined

    桌子乱的反义词

    5阅读
    0回复
    0点赞
  • 一言难尽

    #include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n<=99){ cout<<n; } else{ cout<<"99+"; } return 0; }

    userId_undefined

    智慧达达(1)

    出道萌新时间刺客空间掌握者7月全勤卷王快乐小狗秩序白银
    1阅读
    0回复
    0点赞
首页