题解列表
3034: 自然数的拆分
摘要:```cpp
#include
using namespace std;
int a[1001]={1},f,b[1001],k,n;
void out(int t){//输出函数
……
3151: 蓝桥杯2023年第十四届省赛真题-飞机降落
摘要:解题思路:利用全排列暴力测出全部的飞机排列情况,在试一试每个排列情况下是否可行参考代码:#include<bits/stdc++.h>
using namespace std;
struct ai……
琴海——1045自定义函数之整数处理——超详细注释
摘要:解题思路:注意十个数中,第一个数是最大值以及最后一个数是最小值的情况。注意事项:注释很详细,看看注释参考代码:#include <stdio.h>
#include <string.h>
int ……
编写题解 1060: 二级C语言-同因查找
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main(int i){for(i=10;i<=1000;i++)if(i%2==0&&i%3==0&&i%7==0)pri……
蓝桥杯2024年第十五届省赛真题-R 格式
摘要:[点我查看详解](https://blog.csdn.net/m0_65641514/article/details/137726871?spm=1001.2014.3001.5502)
```……
蓝桥杯2024年第十五届省赛真题-R 格式
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a1[10004];int b[10004];int a[10004];in……
新手无敌思路,看不懂kan我
摘要:解题思路:自己一看就懂注意事项:参考代码:#include <stdio.h>int main() { int a,b,c,x,y,z; scanf("%d %d %d",&a,&b,&c); if(……
a+b so easy [竞赛入门]简单的a+b
摘要:```cpp
#include
using namespace std;
int main(){
int a,b;
while(cin>>a>>b)cout……