[编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]…… 题解列表 2025年11月27日 1 点赞 0 评论 154 浏览 评分:2.0
用递归写阶乘求和 摘要:解题思路:用递归写阶乘求和注意事项:参考代码:import java.math.BigDecimal;import java.math.RoundingMode;import java.math.Bi…… 题解列表 2025年11月27日 0 点赞 0 评论 270 浏览 评分:0.0
Py2860-字符串判等 摘要:str1=input().strip().lower().replace('','')str2=inpu…… 题解列表 2025年11月27日 0 点赞 0 评论 119 浏览 评分:0.0
刷题记录2025/11/26 2773:计算线段长度 摘要:解题思路:注意事项:注意绝对值,注意保留三位小数参考代码:#include<stdio.h>#include<math.h>int main(){ double Xa,Ya,X…… 题解列表 2025年11月26日 2 点赞 0 评论 181 浏览 评分:10.0
最长上升序列(动态规划) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int max(int a,int b){ int max=(a>b) ? a : b;&n…… 题解列表 2025年11月26日 0 点赞 0 评论 81 浏览 评分:0.0
最长上升子序列 摘要:#include<stdio.h>int max(int a,int b){ if(a>=b) return a; &…… 题解列表 2025年11月26日 0 点赞 0 评论 105 浏览 评分:0.0
蓝桥杯2025图形 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int h,w; scanf("%d%d&…… 题解列表 2025年11月26日 0 点赞 0 评论 1213 浏览 评分:0.0
1004:母牛的故事 摘要:解题思路:前3年:每年新增1头小牛,总数为年份数(f(1)=1, f(2)=2, f(3)=3)。第4年起:每只3岁及以上的母牛每年产1头小牛,新增数量等于3年前的母牛总数(f(n-3)),叠加…… 题解列表 2025年11月25日 6 点赞 0 评论 1632 浏览 评分:10.0
1151:计算一个整数N的阶乘 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; long result;&nb…… 题解列表 2025年10月21日 0 点赞 0 评论 360 浏览 评分:0.0
1031字符串反转 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include"string.h"int main(){ char …… 题解列表 2025年11月25日 1 点赞 0 评论 1189 浏览 评分:7.3