蓝桥杯专题系列-2311(Python) 摘要:解题思路:多调试代码参考代码:n = int(input())lst = [1, 1, 2]if n == 1 : print('1.00000000')elif n == 2 …… 题解列表 2023年03月16日 0 点赞 0 评论 86 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double f(int x){ double c; if (x == 1) c = 1.0; else…… 题解列表 2023年06月08日 0 点赞 0 评论 48 浏览 评分:0.0
递归求解java 摘要:解题思路:编写递归函数,在主函数中调用这个函数以便求得第n位与第n+1位的结果,将结果相除就ok啦注意事项:double与float的区别,java中float数据在第8位进行四舍五入,因此要用dou…… 题解列表 2023年12月26日 0 点赞 0 评论 90 浏览 评分:9.9
蓝桥杯2019年第十届省赛真题-Fibonacci 数列与黄金分割(Java) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2024年02月19日 0 点赞 0 评论 79 浏览 评分:0.0