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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    userId_undefined
    有事找大号
    0阅读
    0回复
    0点赞
  • 题解

    userId_undefined
    耐高总冠军 张文杰
    0阅读
    0回复
    0点赞
  • c++自带判断函数

    #include<bits/stdc++.h> using namespace std; int main(){ char c; cin>>c; if(isupper(c)) cout<<'A'; else if(islower(c)) cout<<'a'; else if(isdigit(c)) cout<<0; else cout<<"other"; return 0; }

    userId_undefined
    ~Lyney~
    0阅读
    0回复
    0点赞
  • ACGO

    #include <bits/stdc++.h> using namespace std; int main(){ char n; cin>>n; if(n>='a' && n<='z'){ cout<<"a"; }else if(n>='A' && n<='Z'){ cout<<"A"; }else if(n>='0' && n<='9'){ cout<<"0"; }else{ cout<<"other"; } return 0; }

    userId_undefined
    倒车请故意
    0阅读
    0回复
    0点赞

共64条

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

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

首页