自定义函数之通用位移题解,简单易懂,无需循环 摘要:**解题思路:** 其他人的题解我也看过一些,但我认为他们写的大部分都太复杂了。这道题其实很简单,注意审题就好,和 [[编程入门]C语言循环移位](https://www.d…… 题解列表 2025年03月19日 2 点赞 0 评论 203 浏览 评分:10.0
查找特定的值,正确率百分百,C语言通俗易懂!!! 摘要:#includeint main(){ int n,m,arr[100000],k=0; scanf("%d",&n); for(int i=0;i…… 题解列表 2025年03月19日 1 点赞 0 评论 124 浏览 评分:10.0
最大值和最小值的差,包清楚的c语言。 摘要:…… 题解列表 2025年03月20日 1 点赞 0 评论 101 浏览 评分:10.0
换一种思路来写用set中upper_bound()函数 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <set>using namespace std;typedef long long ll…… 题解列表 2025年03月20日 1 点赞 0 评论 192 浏览 评分:10.0
蓝桥杯2024年第十五届省赛真题-好数,c语言包一清二楚 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,k=0,x;  …… 题解列表 2025年03月20日 4 点赞 0 评论 1197 浏览 评分:10.0
幸运儿(约瑟夫环-模拟+ Vector) 摘要:解题思路:模拟 + Vector注意事项:参考代码:#include<iostream>#include<vector>usingn…… 题解列表 2025年03月20日 1 点赞 0 评论 929 浏览 评分:10.0
编写题解 2950: 素数回文数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() { int a, i, j, sum = 0, b[1…… 题解列表 2025年03月21日 3 点赞 0 评论 107 浏览 评分:10.0
恺撒密码-模拟 摘要:解题思路:模拟注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){ stri…… 题解列表 2025年03月21日 1 点赞 0 评论 62 浏览 评分:10.0
使用随机轴点避免最坏情况 摘要:#include <iostream>#include <cstdlib> // 用于随机数生成using namespace std;int arr[100000…… 题解列表 2025年03月23日 1 点赞 0 评论 83 浏览 评分:10.0
高精度板子题,重点为四舍五入 摘要://这道题目着重考察了高精度存储数字与高精度乘法,重点在于如何对小数进行四舍五入的计算和只输出整数部分include using namespace std;int n;strin…… 题解列表 2025年03月23日 1 点赞 0 评论 1280 浏览 评分:10.0