蓝桥杯2020年第十一届省赛真题-单词分析 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int b[60]={0};char a[60];int main(){ gets(a); int …… 题解列表 2022年03月22日 0 点赞 0 评论 300 浏览 评分:0.0
ascii码的简单应用 摘要:# MarkDown编辑器基本使用说明 ```c #include using namespace std; const int N=1010; typedef long long ll…… 题解列表 2022年04月07日 0 点赞 0 评论 224 浏览 评分:0.0
蓝桥杯2020年第十一届省赛真题-单词分析(通俗易懂) 摘要:lst=list(input())lst_zi_dian_xu=sorted(lst)print(lst_zi_dian_xu)lst_ci_shu=sorted(lst_zi_dian_xu,key…… 题解列表 2023年04月05日 0 点赞 0 评论 110 浏览 评分:0.0
蓝桥杯2020年第十一届省赛真题-单词分析 摘要:解题思路:首先输入一个字符串,再将字符串转换成数字,输出时候在转换成字符注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int ma…… 题解列表 2022年04月07日 0 点赞 0 评论 236 浏览 评分:0.0
小南解题-单词分析--136ms 摘要:'''12:38 2022/6/1,zgn946'''a=input()cc={}for i in a: cc[i]=a.count(i)#字典转…… 题解列表 2022年06月01日 0 点赞 0 评论 204 浏览 评分:0.0
单词分析 (Java代码) 摘要:import java.util.Scanner; import java.util.TreeMap; public class Main { public static void m…… 题解列表 2022年02月08日 0 点赞 0 评论 381 浏览 评分:0.0
单词分析--实现代码 摘要:参考代码:#include <bits/stdc++.h> using namespace std; string s; int nu[27]; int main() { cin>>s…… 题解列表 2023年03月14日 0 点赞 0 评论 113 浏览 评分:6.5
单词分析(C代码) 摘要: #include #include char str[1010]; //建立count数组统计26个字母出现个数 int count[26]; …… 题解列表 2022年03月14日 0 点赞 0 评论 568 浏览 评分:8.0
python-单词分析 摘要:解题思路:注意事项:参考代码:A = list(input().strip()) B = set(A) rst = dict() for item in B: rst.…… 题解列表 2022年02月06日 0 点赞 0 评论 388 浏览 评分:8.0
2583: 蓝桥杯2020年第十一届省赛真题-单词分析 摘要:解题思路:注意事项:参考代码:st=input() sett=set(st) dic={} for i in st: if i not in dic: dic[i]=…… 题解列表 2022年03月31日 0 点赞 0 评论 275 浏览 评分:8.0