题解列表
模拟计算器(C语言)
摘要:#include<stdio.h>
int main(){
int a,b;
double sum;
char c;
scanf("%d%d",&a,&b);
getc……
蓝桥杯2021年第十二届国赛真题-二进制问题 #C++#dfs
摘要:```c++
#include
using namespace std;
typedef long long ll;
typedef pair PII;
const int N = 1e……
自定义函数之字符串反转
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> //strlen()函数在string头文件中,一定得先调用一下 int ……