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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    userId_undefined

    acgoacgo

    时间刺客空间掌握者时空双修者秩序白银
    0阅读
    0回复
    0点赞
  • 题解

    #include<iostream> using namespace std; int main(){ int a; cin>>a; if(a>=10 and a<=99){ cout<<1; }else{ cout<<0; } return 0; }

    userId_undefined

    cys

    0阅读
    0回复
    0点赞
  • 题解(头文件可以直接用iostream)

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

    userId_undefined

    霄

    时空双修者荣耀黄金
    0阅读
    0回复
    0点赞
  • strin9

    userId_undefined

    礼堂钉针

    0阅读
    0回复
    0点赞
  • tijie

    userId_undefined

    正在减肥的吃货

    0阅读
    0回复
    0点赞
  • AC题解

    #include <iostream> using namespace std; int main(){ int n; cin >> n; if(n-n%100 > 0){ cout << '0'; }else{ cout << "1"; } return 0; }

    userId_undefined

    ACOI

    0阅读
    0回复
    0点赞

共106条

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
20条/页
跳至页
暂无数据

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

首页