文章列表
简单的a+b(C++版)
摘要:参考代码如下:
```cpp
#include
using namespace std;//使用C++里的命名空间
int main()
{
int a,b;//定义a,b两个变量……
求反码 不是到为什么有错
摘要: https://www.dotcpp.com/run/16048103
#include
#include
int main()
{
……
练了60道题后---感悟
摘要:静态:int a[100]中进行元素的修改a[1]=10。进一步复杂,a[1].flag=1,标记a[1]已经被修改过。动态:int a[100]与int b[100]关联,int b[100]又与i……
最多约数问题 但是时间超出限制了
摘要: #include
#include
int main()
{
int a,b;
scanf("%d%d",&a,&b);
……
蓝桥杯2022年第十三届决赛真题-最大公约数(简单解法74分,剩余答案错误)
摘要:#include<iostream>
using namespace std;
int gcd(long long int x, long long int y)
{
long long……
3154: 蓝桥杯2023年第十四届省赛真题-子串简写(神奇思路)
摘要:
```cpp
#include
using namespace std;
int main()
{
long long cnt = 0 , ans = 0;
str……
3153: 蓝桥杯2023年第十四届省赛真题-岛屿个数
摘要:**知识点1:四连通及八连通区域**
四连通:即上下左右,递归遍历四连通区域可以把上下左右有一个以上格子重合的区域合并为一个。
八连通:米字型,递归遍历八连通区域可以把所有的存在一个公共点的格子合……
题目 3151: 蓝桥杯2023年第十四届省赛真题-飞机降落
摘要:**初始想法之全排列,参照利用vector**
```cpp
#include
#include
#include
#include
using namespace std;
……