蓝桥杯2021年第十二届国赛真题-大写
摘要:解题思路:注意事项:不要怀疑你的知道的知识是有问题的,我做这道题,编译器说运行错误91。解决办法很简单,其实就是a[]的长度你定义的长一点就没有问题。我在怀疑人生怀疑了半天,无语住了。。。。参考代码:……
小南解题-大写--163ms--1行直接带走国优
摘要:'''2022年03月20日 17:24:18.527zgn9446'''这就是Python的魅力,1行直接带走国优print(input().uppe……
蓝桥杯2021年第十二届国赛真题-大写
摘要:## C++中的string
```c++
#include
int main()
{
std::string A;
std::getline(std::cin, A)……
2620: 蓝桥杯2021年第十二届国赛真题-大写
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
strin……
2620: 蓝桥杯2021年第十二届国赛真题-大写
摘要:解题思路:注意事项:参考代码:st=input()
for i in st:
if i.islower():
print(i.upper(),end=''……
编写题解 2620: 蓝桥杯2021年第十二届国赛真题-大写
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include <bits/stdc++.h>
using namespace std;
int main()
{
……
蓝桥杯2021年第十二届国赛真题-大写
摘要:解题思路:如果是小写字母减去32,就得到大写字母if(a[i]>='a'&&a[i]<='z')a[i]=a[i]-32;注意事项:输入字符串,输出字符串;获得字符串长……
蓝桥杯2021年第十二届国赛真题-大写-python
摘要:解题思路:.................直接利用upper()函数注意事项:参考代码:s=input()t=s.upper()print(t)……