蛇形填数(Python满分) 摘要:while True: n=int(input().strip()) ls=[] for i in range(n): ls.append(list(0…… 题解列表 2021年03月29日 0 点赞 0 评论 497 浏览 评分:6.0
蓝桥杯基础练习VIP-字符串对比(简洁版) 摘要:```cpp #include using namespace std; string a,b; int panduan(string a,string b) { if(a.size()…… 题解列表 2021年03月29日 0 点赞 0 评论 242 浏览 评分:0.0
公式法求解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(int argc, char *argv[]) { float a,b,c; sc…… 题解列表 2021年03月28日 0 点赞 0 评论 186 浏览 评分:0.0
蓝桥杯算法提高VIP-贪吃的大嘴 DFS+剪枝 很好理解 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct cake{ int m,n;}ca[…… 题解列表 2021年03月28日 0 点赞 0 评论 566 浏览 评分:9.9
列出最简真分数序列 摘要:```java int num = 40; ArrayListarrayList=new ArrayList(); for (int i = 2; i …… 题解列表 2021年03月28日 0 点赞 0 评论 473 浏览 评分:0.0
017: [编程入门]完数的判断_题解【C/C++】 摘要:###先上代码 #include using namespace std; int main() { int temp[100], in…… 题解列表 2021年03月28日 0 点赞 1 评论 320 浏览 评分:9.9
如何删除字符之间的* 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char *fun(char a[],char b[]);int main(){ char …… 题解列表 2021年03月28日 0 点赞 0 评论 229 浏览 评分:0.0
猴子吃桃问题 摘要:解题思路:最后一天是1个你,那么他前一天剩下的是(1+1)*2=4个,往前面推,分别是(4+1)*2=10,(10+1)*2=22注意事项:参考代码:#include<iostream>using n…… 题解列表 2021年03月28日 0 点赞 0 评论 233 浏览 评分:9.9
冲冲冲,简单易懂 摘要:解题思路:用一个字符串来接受一个数就可,通过一个while 来实现多组输入。注意事项:参考代码:#include <bits/stdc++.h>using namespace std;//把它看做一个…… 题解列表 2021年03月28日 0 点赞 0 评论 461 浏览 评分:9.3