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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    userId_undefined

    zsy

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

    三目运算一遍过

    userId_undefined

    腾渊之星

    小有名气秩序白银时间刺客空间掌握者时空双修者
    1阅读
    1回复
    1点赞
  • 题解 100% AC

    userId_undefined

    飞的智动

    题解仙人时空双修者模拟·模拟练习生7月全勤卷王秩序白银快乐小狗
    5阅读
    0回复
    1点赞
  • A

    #include <bits/stdc++.h> using namespace std; int isTdn(int n){//is Two-dight number cin>>n; if(n<10||n>99) { return 0; }//排除不可能 else if(n>10||n10) { if(n<99||n99) { return 1; } } } int main() { int n; if(isTdn(n)==1) { cout<<"yes"; }//是 else{ cout<<"no"; }//不是 return 0; }

    userId_undefined

    AC

    I/O·IO入门者时间刺客循环·循环打卡人分支·分支解题者数组·数组操作员格式·格式排版员
    3阅读
    0回复
    1点赞
  • 题解

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

    userId_undefined

    LS_YZY

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