蓝桥杯历届试题-回文数字,包看懂解法 摘要:#include"bits/stdc++.h" using namespace std; int main() { int a,b=0,c,d,e,f,g,h; cin>>a;…… 题解列表 2024年11月07日 0 点赞 0 评论 572 浏览 评分:0.0
dfs+format格式化输出 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年11月07日 0 点赞 0 评论 583 浏览 评分:0.0
经典递归练习汉诺塔 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; void hhh(int n,int A=1,int B=2,int C=3…… 题解列表 2024年11月07日 1 点赞 0 评论 674 浏览 评分:0.0
1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int L,M; cin>>L>>M; …… 题解列表 2024年11月07日 1 点赞 0 评论 535 浏览 评分:0.0
c语言中如何使用倍数(exp版) 摘要:解题思路:注意事项:使用倍数要使用math头文件本人在答案里使用了exp(x)意思是e的x倍数,p是大家常用pow的意思,负数前面加个-就可以了,注意使用scanf参考代码:#include<stdi…… 题解列表 2024年11月07日 0 点赞 0 评论 749 浏览 评分:0.0
c语言中双精度绝对值的函数 摘要:解题思路:计算浮点型绝对值使用fabs函数,原型:double fabs(double x)计算整数绝对值使用abs函数,原型:int abs(int x)计算长整型绝对值使用labs函数,原型:lo…… 题解列表 2024年11月07日 0 点赞 0 评论 583 浏览 评分:0.0
2828: 与7无关的数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int t=0,i,n,sum=0; scanf("%d",&n);…… 题解列表 2024年11月07日 0 点赞 0 评论 389 浏览 评分:0.0
数据结构用栈实现进制转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <malloc.h>#define MAXSIZE 100typedef struct{ int data[MAXS…… 题解列表 2024年11月07日 0 点赞 0 评论 414 浏览 评分:0.0
循环链表解法(c语言代码) 摘要:```c #include #include // 定义链表节点结构体 typedef struct node { int data; // 节点存…… 题解列表 2024年11月07日 1 点赞 0 评论 547 浏览 评分:0.0