小南解题-大写--163ms--1行直接带走国优 摘要:'''2022年03月20日 17:24:18.527zgn9446'''这就是Python的魅力,1行直接带走国优print(input().uppe…… 题解列表 2022年06月01日 0 点赞 0 评论 191 浏览 评分:0.0
2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:st=input() for i in st: if i.islower(): print(i.upper(),end=''…… 题解列表 2022年04月01日 0 点赞 0 评论 224 浏览 评分:0.0
蓝桥杯2021年第十二届国赛真题-大写 摘要:## C++中的string ```c++ #include int main() { std::string A; std::getline(std::cin, A)…… 题解列表 2023年05月26日 0 点赞 0 评论 169 浏览 评分:0.0
2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { strin…… 题解列表 2023年10月30日 0 点赞 0 评论 62 浏览 评分:0.0