题解列表
如何删除字符之间的*
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char *fun(char a[],char b[]);int main(){ char ……
017: [编程入门]完数的判断_题解【C/C++】
摘要:###先上代码
#include
using namespace std;
int main()
{
int temp[100], in……
蓝桥杯算法提高VIP-贪吃的大嘴 DFS+剪枝 很好理解
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct cake{ int m,n;}ca[……
蓝桥杯基础练习VIP-字符串对比(简洁版)
摘要:```cpp
#include
using namespace std;
string a,b;
int panduan(string a,string b)
{
if(a.size()……
蛇形填数(Python满分)
摘要:while True:
n=int(input().strip())
ls=[]
for i in range(n):
ls.append(list(0……