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 评论 515 浏览 评分:9.9
1048: 自定义函数之字符串拷贝(函数+指针即可) 摘要:解题思路:会指针的话会比较好理解。注意事项:参考代码:#include<stdio.h> void fz_kb(int n,char *p,int m) { p+=m-1;…… 题解列表 2022年03月23日 0 点赞 0 评论 597 浏览 评分:9.9
小菜鸡------C语言通俗易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m; while (~scanf("%d %d", &n, &m)) //输入n,m …… 题解列表 2022年03月23日 0 点赞 1 评论 585 浏览 评分: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 评论 641 浏览 评分:9.9
1056: 二级C语言-温度转换 摘要:解题思路:一模一样的题目传送门:https://blog.dotcpp.com/a/84233最近比较忙,没时间刷题,写点不要脑子的水一哈。注意事项:好像发表情不会显示……好落后的平台啊参考代码:#i…… 题解列表 2022年03月23日 0 点赞 0 评论 1078 浏览 评分:9.9
蓝桥杯算法提高VIP-夺宝奇兵 摘要:**DP思想** ```cpp #include #include #include using namespace std; int n; int map[105][105]; in…… 题解列表 2022年03月23日 0 点赞 0 评论 511 浏览 评分: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 评论 861 浏览 评分:9.9
蓝桥杯2020年第十一届省赛真题-整除序列(java) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2022年03月23日 0 点赞 3 评论 760 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:(1)定义一个平年月份天数的数组。(2)根据for循环统一计算平年月份的天数。(3)判断输入数据年份是否是闰年,考虑输入月份是否大于2,若满足则sum加上一天。(4)加上输入数据中的day。…… 题解列表 2022年03月24日 0 点赞 0 评论 524 浏览 评分:9.9