题解列表
1033 元音字符提取
摘要:解题思路:注意事项:题目只需要考虑小写情况参考代码:#include<stdio.h>int main(){ char a[1000]; char b[1000]; gets(a); in……
1035 字符类型统计
摘要:解题思路:#include<stdio.h>#include<ctype.h>int letters=0,digits=0,spaces=0,others=0;void cou……
蓝桥杯2022年第十三届决赛真题-卡牌 简单二分
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"usingnamespacestd;#definell&nb……
C++:map容器简单使用方法_练习
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<map>using namespace std ……
两种算法,一个将元素向前挪,一个直接数0的个数
摘要:解题思路:注意事项:参考代码:①找到0所在的位置,然后将后面的元素向前挪一位每挪一位,序列长度要减一,不然会无限循环(因为最后的数一直是0)a=int(input())b=list(map(int,i……