题解列表
不是二分的写法不加以参考
摘要:```cpp
#include
#include
#include
#include
using namespace std;
typedef long long LL;
const i……
查找最接近的元素二分
摘要:```cpp
#include
#include
#include
using namespace std;
typedef long long LL;
const int N =1000……
求长方形行面积问题,主要还是格式问题
摘要:注意事项: 1.输入的长和宽要在一行有空格隔开; 2.输出的周长和面积要是两行,且以C:和S:开头; 3.开头的C和S要是大写的,不然通不过……
1793: 玉龙学长买雪糕----递归
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int rec(int a);
int main()
{
int a;
……
1785: 指针/引用练习之交换数字
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int swap(int &a,int &b);
int main()
{
……
1784: 矩阵的对角线之和
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int arr[5][5];
int ……
1783: 星期判断机switch-case 和map容器两种方法解决
摘要:解题思路:注意事项:参考代码:switch-case方法#includeusing namespace std;
int main()
{
int week;
cin>>wee……