题解列表
蓝桥杯2023年第十四届省赛真题-飞机降落
摘要:#include <bits/stdc++.h>
using namespace std;
// 该题,因为数据范围很小,所以可以 把所有的排列情况列出来
// 然后 每列出 一个飞机,……
注意‘'x"要大写
摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int h,l,i,z,y; int d;const int n;const int j;int *p=&j;……
1226题解——贪心
摘要:解题思路:分奇偶两种情况考虑。注意事项:参考代码:#include <stdio.h>
#include <iostream>
using namespace std;
int gc……
2809: 菲波那契数列(C语言)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b[9999],i; scanf("%d", &a); b[0]=1,b[1]=1……
自定义函数求一元二次方程,非常简单的做法
摘要:参考代码:#include<iostream> #include<math.h>using namespace std;int main(){ double a,b,c; double x1,x2,x……