蓝桥杯基础练习VIP-数的读法Python版解法 摘要:解题思路: 首先判断输入的串的位数,根据位数分为三类,第一类是大于8位,第二类是大于4位并且小于9位,第三类是小于5位,读的时候分为三个级别,个级、万级、亿级,分别写三个函数。注意事项:这里说一下第一…… 题解列表 2022年03月23日 0 点赞 5 评论 888 浏览 评分:9.9
1043 三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d", &a, &b,&c); if(a>b) …… 题解列表 2022年03月23日 0 点赞 0 评论 518 浏览 评分:9.9
1048: 自定义函数之字符串拷贝(函数+指针即可) 摘要:解题思路:会指针的话会比较好理解。注意事项:参考代码:#include<stdio.h> void fz_kb(int n,char *p,int m) { p+=m-1;…… 题解列表 2022年03月23日 0 点赞 0 评论 599 浏览 评分:9.9
小菜鸡------C语言通俗易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m; while (~scanf("%d %d", &n, &m)) //输入n,m …… 题解列表 2022年03月23日 0 点赞 1 评论 587 浏览 评分:9.9
二级C语言-同因查找 摘要:解题思路:for循环输入,if判断,数组接收注意事项:i的起始值参考代码:include<stdio.h>void su(int m, int n) { int i; int a[1000]; int…… 题解列表 2022年03月23日 0 点赞 0 评论 646 浏览 评分:9.9
1056: 二级C语言-温度转换 摘要:解题思路:一模一样的题目传送门:https://blog.dotcpp.com/a/84233最近比较忙,没时间刷题,写点不要脑子的水一哈。注意事项:好像发表情不会显示……好落后的平台啊参考代码:#i…… 题解列表 2022年03月23日 0 点赞 0 评论 1082 浏览 评分:9.9
蓝桥杯算法提高VIP-夺宝奇兵 摘要:**DP思想** ```cpp #include #include #include using namespace std; int n; int map[105][105]; in…… 题解列表 2022年03月23日 0 点赞 0 评论 515 浏览 评分:9.9
简单易懂,快来用-_-! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n=0; float s=0; int a[10]; for(i=0;i<1…… 题解列表 2022年03月23日 0 点赞 3 评论 864 浏览 评分:9.9
蓝桥杯2020年第十一届省赛真题-整除序列(java) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2022年03月23日 0 点赞 3 评论 764 浏览 评分:9.9