2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { strin…… 题解列表 2023年10月30日 0 点赞 0 评论 51 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[201]; gets(str); str[strlen(s…… 题解列表 2023年06月27日 0 点赞 0 评论 65 浏览 评分:0.0
蓝桥杯2021年第十二届国赛真题-大写 摘要:## C++中的string ```c++ #include int main() { std::string A; std::getline(std::cin, A)…… 题解列表 2023年05月26日 0 点赞 0 评论 156 浏览 评分:0.0
编写题解 2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:#include<iostream> #include <bits/stdc++.h> using namespace std; int main() { …… 题解列表 2022年08月31日 0 点赞 0 评论 105 浏览 评分:0.0
小南解题-大写--163ms--1行直接带走国优 摘要:'''2022年03月20日 17:24:18.527zgn9446'''这就是Python的魅力,1行直接带走国优print(input().uppe…… 题解列表 2022年06月01日 0 点赞 0 评论 186 浏览 评分:0.0
蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:不要怀疑你的知道的知识是有问题的,我做这道题,编译器说运行错误91。解决办法很简单,其实就是a[]的长度你定义的长一点就没有问题。我在怀疑人生怀疑了半天,无语住了。。。。参考代码:…… 题解列表 2022年04月03日 0 点赞 0 评论 499 浏览 评分:0.0
2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:st=input() for i in st: if i.islower(): print(i.upper(),end=''…… 题解列表 2022年04月01日 0 点赞 0 评论 212 浏览 评分:0.0
水题【C++】 摘要:```cpp #include using namespace std; int main(){ string s1; cin >> s1; for(int…… 题解列表 2022年03月25日 0 点赞 0 评论 252 浏览 评分:5.0
2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; int n; gets(str); n=str…… 题解列表 2022年01月17日 0 点赞 0 评论 311 浏览 评分:9.9
2620: 蓝桥杯2021年第十二届国赛真题-大写(java代码) 摘要:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] args) { …… 题解列表 2021年12月19日 0 点赞 0 评论 331 浏览 评分:9.3