题解 2620: 蓝桥杯2021年第十二届国赛真题-大写

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

蓝桥杯2021年第十二届国赛真题-大写

摘要:解题思路:如果是小写字母减去32,就得到大写字母if(a[i]>=&#39;a&#39;&&a[i]<=&#39;z&#39;)a[i]=a[i]-32;注意事项:输入字符串,输出字符串;获得字符串长……

水题【C++】

摘要:```cpp #include using namespace std; int main(){ string s1; cin >> s1; for(int……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[201]; gets(str); str[strlen(s……