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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    STL

    userId_undefined

    zhouty

    秩序白银
    0阅读
    0回复
    0点赞
  • tijie

    userId_undefined

    正在减肥的吃货

    倔强青铜
    0阅读
    0回复
    0点赞
  • 题解 c++无注释

    userId_undefined

    潜龙暗虎

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

    #include<cstdio> #include<iostream> #include<cmath> using namespace std; int main(){ char a; cin>>a; if(a>='a'&&a<='z') { cout<<"a"; } else if(a>='A'&&a<='Z') { cout<<"A"; } else if(a>='0'&&a<='9') { cout<<"0"; } else { cout<<"other"; } return 0; }

    userId_undefined

    准

    倔强青铜
    0阅读
    0回复
    0点赞
  • 题解 判断字符

    userId_undefined

    1ntrEstingด้้้้้

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

    #include<bits/stdc++.h> using namespace std; int main(){ char n; cin>>n; if(n>=65&&n=<90){ cout<<'A'; } else if(n>=97&&n=<122){ cout<<'a'; } else if(n>=48&&n=<57){ cout<<'0'; } else{ cout<<"other"; } }

    userId_undefined

    菜

    倔强青铜
    0阅读
    0回复
    0点赞

共46条

  • 1
  • 2
  • 3
20条/页
跳至页
首页