2025/7/28刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,m; scanf("%d …… 题解列表 2025年07月28日 0 点赞 0 评论 363 浏览 评分:0.0
编写题解 3210: 蓝桥杯2024年第十五届省赛真题-R 格式(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){&nb…… 题解列表 2025年07月28日 2 点赞 0 评论 697 浏览 评分:10.0
C语言解法递归方法 #includeintsum;intfun(intn){if(n/3==0)returnn;else{sum+=n/3;fun(n/3+n%3);}}intmain(void){inti,a,b[10];for(i=0;i<10;i++){scanf("%d", 题解列表 2025年07月27日 0 点赞 0 评论 469 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int k; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 365 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d …… 题解列表 2025年07月26日 1 点赞 0 评论 332 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 339 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d&qu…… 题解列表 2025年07月26日 0 点赞 0 评论 329 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:找最大值 初始值为限制内最小值 找最小值 初始值找限制内最大值注意事项:参考代码:#include<stdio.h>int main(){ &…… 题解列表 2025年07月26日 0 点赞 0 评论 339 浏览 评分:0.0
2025/7/26刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d&qu…… 题解列表 2025年07月26日 2 点赞 0 评论 392 浏览 评分:0.0
2025/7/25刷题记录 摘要:解题思路:两个整数相除得浮点数结果要将其中一个数强转为浮点要不然会精度丢失注意事项:参考代码:#include<stdio.h>int main(){ int a…… 题解列表 2025年07月25日 0 点赞 0 评论 489 浏览 评分:0.0