1988: 求总时间 摘要:解题思路:注意事项:参考代码:n = int(input()) lis = [30] for i in range(n-2): lis.append(lis[-1]*1.05) pri…… 题解列表 2022年01月04日 0 点赞 0 评论 488 浏览 评分:0.0
1997: 日期换算 摘要:解题思路:注意事项:参考代码:m,d = map(int,input().split()) lis = [] for i in range(1,8): if i%2==0: …… 题解列表 2022年01月04日 0 点赞 0 评论 373 浏览 评分:0.0
1680: 数据结构-八进制数-C语言 摘要:```c #include #include #include typedef struct stack{ int data; struct stack *next;…… 题解列表 2022年01月04日 0 点赞 0 评论 586 浏览 评分:0.0
1733: 堆栈的使用-C语言 摘要:```c //堆栈的使用 #include #include typedef struct node { int data; struct node *next;…… 题解列表 2022年01月04日 0 点赞 0 评论 635 浏览 评分:0.0
1470: 蓝桥杯基础练习VIP-时间转换 摘要:时分秒挨个对 60 取余就得到了。#include <bits/stdc++.h> using namespace std; int main(){ int n; cin …… 题解列表 2022年01月04日 0 点赞 0 评论 420 浏览 评分:0.0
2084: 蓝桥杯基础练习-特殊回文数 摘要:先求各位和是否与所求一致,再判断是否是回文数,而不是相反。#include <bits/stdc++.h> using namespace std; int f(int a){ in…… 题解列表 2022年01月04日 0 点赞 0 评论 524 浏览 评分:0.0
1486: 蓝桥杯算法提高VIP-一元一次方程 摘要:无脑打印。#include <bits/stdc++.h> using namespace std; int main(){ double a,b; cin >> a >>…… 题解列表 2022年01月04日 0 点赞 0 评论 362 浏览 评分:0.0
1503: 蓝桥杯算法提高VIP-前10名 摘要:读入、排序后输出。#include <bits/stdc++.h> using namespace std; bool cmp(int &a,int &b){ return a>b;…… 题解列表 2022年01月04日 0 点赞 0 评论 393 浏览 评分:0.0
1584: 蓝桥杯算法训练VIP-判定字符位置 摘要:挨个用 find 找 a、e、i、o、u 的位置并保存,如果都没找到输出 0,找到了输出位置。#include <bits/stdc++.h> using namespace std; int…… 题解列表 2022年01月04日 0 点赞 0 评论 455 浏览 评分:0.0
1431: 蓝桥杯2014年第五届真题-分糖果-java版题解,仅嵌套一个for循环 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2022年01月05日 0 点赞 0 评论 364 浏览 评分:0.0