电报加密(无需过多解释----自定义) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char plus(char k[]){ int i=0; while(k[i]!='\0') { …… 题解列表 2023年02月28日 0 点赞 2 评论 575 浏览 评分:9.9
自定义函数求一元二次方程 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { //输入处理 float a,b,c,del…… 题解列表 2023年02月28日 0 点赞 0 评论 142 浏览 评分:0.0
辗转相除法求最大公约数与最小公倍数 摘要:解题思路:1.最大公约数:辗转相除 2.最小公倍数:两数乘积/最大公约数注意事项:参考代码:#include<stdio.h> int Max_GY(int x,int y); int Min_…… 题解列表 2023年02月28日 0 点赞 0 评论 119 浏览 评分:0.0
2826: 雇佣兵 摘要:#include<stdio.h> #include<math.h> int main() { int m,n,x; scanf("%d %d %d",&m,&n,&x)…… 题解列表 2023年02月28日 0 点赞 0 评论 201 浏览 评分:0.0
3021基础解法(Python) 摘要:注意事项:题目下标问题参考代码:n_num = int(input())for i in range(n_num) : n_in = int(input()) if n_in == 1 :…… 题解列表 2023年02月28日 0 点赞 0 评论 309 浏览 评分:9.9
2825: 计算多项式的值(C) 摘要:参考代码:#include<stdio.h> #include<math.h> int main() { double x; int n; scanf("%lf…… 题解列表 2023年02月28日 0 点赞 0 评论 316 浏览 评分:0.0
2821: 开关灯 摘要:参考代码:#include<stdio.h> #include<math.h> int main() { int n,m; scanf("%d %d",&n,&m); …… 题解列表 2023年02月28日 0 点赞 0 评论 211 浏览 评分:0.0
1429: 蓝桥杯2014年第五届真题-兰顿蚂蚁(BFS版) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include…… 题解列表 2023年02月28日 0 点赞 0 评论 182 浏览 评分:9.9
辗转相除法求最大公因数 摘要:思路: 最小公倍数 = 两个整数的乘积/最大公因数 最小公倍数 辗转相除 代码: #include int main(){ int a, b; …… 题解列表 2023年02月28日 0 点赞 0 评论 229 浏览 评分:0.0
2024题C语言引用C++解法 摘要:解题思路:主要分为分成结构体定义,链表尾插遍历查找并删除链表元素和打印链表注意事项:主要问题在于遍历查找删除链表元素,就是用指针s来记录L的上一个位置,L来遍历,L往后跳一格,如果没查到s就瞬移到L,…… 题解列表 2023年02月28日 0 点赞 0 评论 387 浏览 评分:9.9