题解列表
自定义函数之整数处理(新手小白也能学会的编程)
摘要:解题思路:题目要求使用三个函数,1、输入可以直接用main函数。2、将其中最小的数与第一个数对换,把最大的数与最后一个数对换用自己的函数int F(int a[10])。3、用PR函数输出要求的结果。……
1466: 蓝桥杯基础练习VIP-字符串对比(C++简单解)
摘要:
```cpp
#include
#include
#include
using namespace std;
int checkRelation(const string& s……
牛吃牧草(六年级天天写)
摘要:解题思路:小学题目 你不能不会吧注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int n;
c……
1232: 查找最大元素(C++)
摘要:AC代码:
```cpp
#include
#include
#include
using namespace std;
int main() {
string input……
梯形面积(无聊刷题)
摘要:解题思路: 没啥好说的 写不对就自杀吧注意事项: 参考代码:#include<iostream>
using namespace std;
const float sh=15,xia=25……
优质题解
数组插入处理(详解)保证新手小白也能看懂
摘要:解题思路:首先是输入只含有9个元素的数组a[10],用for循环依次输入。接着输入插入的数字m,将m与数组元素比较。1、当m<=a[0]时,记录t=0;2、当m>=a[8]时,记录9;3、当a[i]<……
堆栈的使用(数组模拟数组)(acwing)
摘要:解题思路: 根据题目所述即可注意事项: 简单暴力即可参考代码:#include<iostream>
using namespace std;
const int N=10010;
int p……