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
C++ C用库函数(比赛时可以查看API文档) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string std; getline(cin,std); …… 题解列表 2021年11月10日 0 点赞 0 评论 706 浏览 评分:9.9
2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:import java.util.Locale;import java.util.Scanner;public class Main { public static…… 题解列表 2021年11月20日 0 点赞 0 评论 699 浏览 评分: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
蓝桥杯2021年第十二届国赛真题-大写-python 摘要:解题思路:.................直接利用upper()函数注意事项:参考代码:s=input()t=s.upper()print(t)…… 题解列表 2021年08月22日 0 点赞 0 评论 740 浏览 评分:8.0
蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:如果是小写字母减去32,就得到大写字母if(a[i]>='a'&&a[i]<='z')a[i]=a[i]-32;注意事项:输入字符串,输出字符串;获得字符串长…… 题解列表 2021年08月15日 0 点赞 0 评论 790 浏览 评分:7.2
水题【C++】 摘要:```cpp #include using namespace std; int main(){ string s1; cin >> s1; for(int…… 题解列表 2022年03月25日 0 点赞 0 评论 252 浏览 评分:5.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
2620: 蓝桥杯2021年第十二届国赛真题-大写 摘要:解题思路:注意事项:参考代码:st=input() for i in st: if i.islower(): print(i.upper(),end=''…… 题解列表 2022年04月01日 0 点赞 0 评论 212 浏览 评分:0.0
小南解题-大写--163ms--1行直接带走国优 摘要:'''2022年03月20日 17:24:18.527zgn9446'''这就是Python的魅力,1行直接带走国优print(input().uppe…… 题解列表 2022年06月01日 0 点赞 0 评论 186 浏览 评分:0.0