蓝桥杯2025年第十六届省赛真题-最短距离 摘要:解题思路:问题分析:该程序的核心功能是计算两个数组中对应元素差值的绝对值之和。通过对数组进行排序,可以确保这种计算方式得到的结果是最小可能的差值总和(这是基于 "排序后对应位置元素匹配可使总…… 题解列表 2025年09月16日 0 点赞 0 评论 9 浏览 评分:0.0
乘法口诀表 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for(int i=1;i<…… 题解列表 2025年09月16日 0 点赞 0 评论 17 浏览 评分:0.0
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; int b=a;…… 题解列表 2025年09月16日 0 点赞 0 评论 18 浏览 评分:0.0
C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int a=n;…… 题解列表 2025年09月15日 0 点赞 0 评论 50 浏览 评分:0.0
二级C语言-计算素数和 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;bool isprime(int a){…… 题解列表 2025年09月15日 0 点赞 0 评论 93 浏览 评分:0.0
二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; &nb…… 题解列表 2025年09月15日 1 点赞 0 评论 85 浏览 评分:10.0
组合数(隔板法)+ 高精度 摘要:解题思路:组合数(隔板法)+ 高精度参考代码:#include <iostream>#include <cstring>#include <algorithm>#i…… 题解列表 2025年09月12日 0 点赞 0 评论 159 浏览 评分:0.0
递推 + 前缀和 摘要:解题思路:递推 + 前缀和注意事项:参考代码:#include <iostream>#include <cstring>#include <algorithm>us…… 题解列表 2025年09月12日 0 点赞 0 评论 154 浏览 评分:0.0
编写题解 2780: 奇偶数判断 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int i; …… 题解列表 2025年09月10日 0 点赞 0 评论 168 浏览 评分:0.0
编写题解 2779: 输出绝对值 摘要:#include<bits/stdc++.h>using namespace std;int main(){ double i; &nbs…… 题解列表 2025年09月10日 0 点赞 0 评论 158 浏览 评分:0.0