蓝桥杯基础练习VIP-Huffuman树C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<algorithm>int main(){ int n,pay=0; …… 题解列表 2024年12月07日 0 点赞 0 评论 37 浏览 评分:0.0
1723: 求最大值 超级简单做法 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义一个长度为10的整型数组a …… 题解列表 2024年12月07日 0 点赞 0 评论 45 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要: #include int main() { char a[1000]; char s[1000]; gets(a); int…… 题解列表 2024年12月07日 0 点赞 0 评论 277 浏览 评分:10.0
蓝桥杯2024年第十五届省赛真题-好数 摘要: #include int main() { int n; int d = 0;; int u = 1; int c = 0;…… 题解列表 2024年12月07日 0 点赞 0 评论 153 浏览 评分:10.0
编写题解 1073: 弟弟的作业 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h> //atio函数,将字符串转换为数字.#include<string.h> …… 题解列表 2024年12月07日 1 点赞 0 评论 171 浏览 评分:10.0
直接乘,不用再倒数变幻,于是直接累加即可,1个循环 摘要:解题思路:1.由于直接乘,不用再倒数变幻,于是直接累加即可,1个循环。2.因为1,每次累乘后,无需更新,直接继续,累加即可。3.用pow不稳定?注意:这类题最后结果sum+1。参考代码:#includ…… 题解列表 2024年12月07日 0 点赞 0 评论 34 浏览 评分:0.0
新手 乘方计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d",&a,&b); c=pow(a,b); …… 题解列表 2024年12月07日 0 点赞 0 评论 59 浏览 评分:0.0
两个循环嵌套,注意变量更新位置、积乘累加的位置 摘要:解题思路:1.两个循环嵌套,n<=15允许。2.i与j的关系,保证j<=i,否则就乱序了。3.m的位置&sum的位置:m需要定义在内部循环外,每次内部循环后更新结果为1,确保循环计算从1再积乘;sum…… 题解列表 2024年12月07日 0 点赞 0 评论 31 浏览 评分:0.0
新手 骑车与走路 摘要:解题思路:分别列出走路和骑车的时间表达式;比较大小,小则快,大则慢注意事项:参考代码#include<stdio.h>int main(){ double t1,t2,x; scanf("…… 题解列表 2024年12月07日 0 点赞 0 评论 84 浏览 评分:0.0
C语言代码 用指针解决 摘要:解题思路:1.遍历输入 2.在输入过程中求全部数据的和、最大值、最小值 3.求有效数据(除了最大值和最小值之外的数据)的平均 题解列表 2024年12月07日 0 点赞 0 评论 37 浏览 评分:0.0