写题解 1131: C语言训练-斐波纳契数列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; scanf("%d",&n); int str[40]; str[…… 题解列表 2022年03月10日 0 点赞 0 评论 397 浏览 评分:0.0
做题记录2022.3.10(ac:100%) 摘要:解题思路:暴力,但不完全暴力注意事项:参考代码:string = input().strip() length = len(string) max_len = float("-inf") # 参…… 题解列表 2022年03月10日 0 点赞 0 评论 359 浏览 评分:0.0
蛇行矩阵递归解法 摘要:解题思路:设每个数字坐标(x,y),m[x][y]为(x,y)处打印的值,观察下图: 1 3 6 10 15 2 5 9 14 4 8 13 7 12 11 举个例子: 2下面是4,左边…… 题解列表 2022年03月10日 0 点赞 0 评论 397 浏览 评分:0.0
蓝桥杯算法提高VIP-欧拉函数 (Java代码) 摘要:import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.Scanner; public cl…… 题解列表 2022年03月10日 0 点赞 0 评论 332 浏览 评分:0.0
编写题解 1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码://// Created by ch'li'sen on 2022/3/8.//#include<iostream>using namespace std…… 题解列表 2022年03月10日 0 点赞 0 评论 303 浏览 评分:0.0
2009: 第一个带类的C++程序 摘要:C++ 类的简单运用。#include <bits/stdc++.h> using namespace std; class time{ private: int …… 题解列表 2022年03月10日 0 点赞 0 评论 322 浏览 评分:0.0
圆的面积--简单 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#define pi 3.1415926using namespace std;int main()…… 题解列表 2022年03月10日 0 点赞 0 评论 335 浏览 评分:0.0
打印图案--简单 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ cout << " *" << endl; …… 题解列表 2022年03月10日 0 点赞 0 评论 347 浏览 评分:0.0
编写题解 1052: [编程入门]链表合并 摘要:解题思路:注意事项:参考代码://// Created by ch'li'sen on 2022/3/8.//#include<iostream>#include "algorithm…… 题解列表 2022年03月11日 0 点赞 0 评论 445 浏览 评分:0.0
1518: 蓝桥杯算法提高VIP-寻找三位数 摘要:解题思路:注意事项:参考代码:st=[str(i) for i in range(1,10)] ls=[] for i in st: z=st[:] z.remove(i) …… 题解列表 2022年03月11日 0 点赞 0 评论 292 浏览 评分:0.0