通过率100%但是测试用例有问题 摘要:解题思路:注意全为特殊字符时的处理注意事项:蓝桥杯官网上100%通过率,这个网站上的测试用例都是自己编的,出错难免参考代码:import java.util.Scanner;public class …… 题解列表 2025年02月23日 0 点赞 0 评论 785 浏览 评分:0.0
字符串合并-strcat 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){ chars[2…… 题解列表 2025年02月23日 1 点赞 0 评论 277 浏览 评分:0.0
转化为数学问题 摘要:解题思路:A/(B+1)+1<V<A/B注意事项:参考代码:#include<stdio.h>int main (){int i,n,min=-1,max=999999999,…… 题解列表 2025年02月23日 5 点赞 0 评论 905 浏览 评分:10.0
SARS病毒C++非常简单 摘要:**直接上到码嗨嗨嗨**```cpp#include #include using namespace std;const long long MOD = 1000000007…… 题解列表 2025年02月23日 0 点赞 0 评论 242 浏览 评分:0.0
很容易理解的一种做法 摘要:解题思路:注意事项:注意“==”和“=”参考代码:a,b = map(int,input().split())if a >= 60: a = 1else: …… 题解列表 2025年02月23日 0 点赞 0 评论 395 浏览 评分:0.0
题解 1434: 蓝桥杯历届试题-回文数字(最简单易懂) 摘要:解题思路:将数字转换为字符串,顺序和逆序遍历字符串的每一位判断是否相等,若每一位都相等则为回文数。并使用found标记有没有找到满足条件的数字参考代码:x=int(input(…… 题解列表 2025年02月23日 4 点赞 0 评论 675 浏览 评分:0.0
奇数个数-简简单单,一个while循环搞定 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ intn,a=0; scanf("%d",…… 题解列表 2025年02月22日 0 点赞 0 评论 331 浏览 评分:0.0
简单讲讲自己的思路 摘要:def a(n): #当年份小于等于4时,那就只有刚开始的那头母牛在生崽,所以直接输出数量即可 if n <= 4: …… 题解列表 2025年02月22日 6 点赞 0 评论 1598 浏览 评分:6.0
递推公式位数问题 摘要:```cpp#include using namespace std;int main() { int n; cin >>n; const i…… 题解列表 2025年02月22日 0 点赞 0 评论 592 浏览 评分:0.0
数位排序简单写法:sorted函数 摘要:解题思路:int(i)for i in str(num):生成器表达式,用于将数字整体分开,看成其组成部分;1.str(num)用于将数字变为字符串,使其不再具有数字的意义,如123变为”123“。2…… 题解列表 2025年02月22日 4 点赞 0 评论 631 浏览 评分:0.0