1001: [编程入门]第一个HelloWorld程序 摘要:解题思路:这道题其实就是简单的输入输出,即第一行输出“**************************”,第二行输出“Hello World!”,第三行输出“*******************…… 题解列表 2022年04月30日 0 点赞 0 评论 670 浏览 评分:7.0
蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { scanf("%llX",&a…… 题解列表 2022年04月30日 0 点赞 0 评论 544 浏览 评分:0.0
编写题解 2024: 链表删除练习 vector 摘要:参考代码:#include<iostream> #include<string> #include<algorithm> #include<vector> using namespace st…… 题解列表 2022年04月30日 0 点赞 0 评论 658 浏览 评分:0.0
蓝桥杯基础练习-十六进制转八进制 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { cin>>n; while…… 题解列表 2022年04月30日 0 点赞 0 评论 546 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main() { while(cin>>a) p…… 题解列表 2022年04月30日 0 点赞 0 评论 525 浏览 评分:0.0
蓝桥杯算法提高VIP-十进制数转八进制数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main() { cin>>a; printf…… 题解列表 2022年04月30日 0 点赞 0 评论 516 浏览 评分:0.0
简单易懂,极简 摘要:解题思路:注意事项:参考代码:int main(){ int x = 0; int y = 0; while ((x = getchar()) != '\n') { if (x ==…… 题解列表 2022年04月30日 0 点赞 0 评论 521 浏览 评分:9.9
蓝桥杯算法提高VIP-第二大整数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;set<int> st;int main() { int num; wh…… 题解列表 2022年04月30日 0 点赞 0 评论 452 浏览 评分:0.0
利用匿名函数来求 解题思路:调用filter这个过滤函数,再在函数里定义一个匿名函数来筛选列表里大于平均值的数注意事项:参考代码:numbers=list(map(int,input().split()))average=sum(numbers)/10end=filter(lambdax:x>average, 题解列表 2022年04月30日 0 点赞 0 评论 800 浏览 评分:0.0
蓝桥杯算法提高VIP-最大最小值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,a[10005];int main(){ cin>>n; for(int…… 题解列表 2022年04月30日 0 点赞 0 评论 565 浏览 评分:0.0