区间dp——记忆化搜索 摘要:参考代码:importjava.util.Scanner;/***@author小张*{@code@…… 题解列表 2025年10月02日 2 点赞 0 评论 303 浏览 评分:6.0
冒泡排序(菜鸟记录) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[3]; for(int i=0;…… 题解列表 2025年10月03日 1 点赞 0 评论 500 浏览 评分:6.0
三元判断解法 摘要:参考代码:#include<stdio.h>int main(){ int a=0, b=0, c=0; int min, mid, max; scanf("%d %d %d&q…… 题解列表 2025年10月27日 2 点赞 2 评论 374 浏览 评分:6.0
两个for循环解决问题 摘要:解题思路:注意事项:参考代码:#include<math.h>#include<stdio.h>int main(){ int n,i,j,a;&nb…… 题解列表 2025年11月03日 2 点赞 0 评论 622 浏览 评分:6.0
Py3338-蓝桥杯2025年第十六届省赛真题-最大数字 摘要:参考代码:fromfunctoolsimport*importsyssys.set_int_max_str_digits(1000000)n…… 题解列表 2025年11月09日 0 点赞 0 评论 984 浏览 评分:6.0
[编程入门]结构体之成绩统计2 摘要:解题思路: 进行三个函数的编写分离功能:一个输出函数,一个求平均数函数,一个找最高分函数最高分函数时候按照总分的大小进行寻找,遍历完返回最高分所在的索引注意事项:参考代码:#i…… 题解列表 2025年11月11日 2 点赞 0 评论 416 浏览 评分:6.0
1007: 分段函数求值 摘要:解题思路:分段函数注意事项:double参考代码:#include<stdio.h>int main(){ double x,y; &nbs…… 题解列表 2025年11月19日 3 点赞 2 评论 916 浏览 评分:6.0
[编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]…… 题解列表 2025年11月27日 2 点赞 0 评论 260 浏览 评分:6.0
输入输出练习之输出图案 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { // 声明变量:存储输入的单个字符 char…… 题解列表 2026年01月04日 2 点赞 0 评论 391 浏览 评分:6.0
求长方形面积 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int k,n,C,S; scanf("%d %d",&k,&n); C=2*k+2*n; …… 题解列表 2019年01月08日 0 点赞 0 评论 3355 浏览 评分:5.9