关于先用筛子筛出质数数组的方法 摘要:解题思路:关于先用筛子筛出质数数组的方法注意事项:参考代码:import java.math.BigDecimal;import java.math.RoundingMode;import…… 题解列表 2025年11月27日 0 点赞 0 评论 6 浏览 评分:0.0
慢慢看,慢慢理解,你也能做到。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n=0;  …… 题解列表 2025年11月27日 0 点赞 0 评论 8 浏览 评分:0.0
2966基础写法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int sushu(int a){ if…… 题解列表 2025年11月27日 0 点赞 0 评论 7 浏览 评分:0.0
1924: 蓝桥杯算法提高VIP-01背包 摘要:解题思路:注意事项:dp[i][j]=max(dp[i-1][j],dp[i-1][j-w[i]]+v[i]); dp[i][j]表示有i个物品传入,背包能装j的…… 题解列表 2025年11月27日 0 点赞 0 评论 7 浏览 评分:0.0
3050: 最长上升子序列 摘要:解题思路:注意事项:dp[j]=max(dp[j],dp[i]+1);参考代码:#include<stdio.h>#include<stdlib.h>int max(int a…… 题解列表 2025年11月27日 0 点赞 0 评论 5 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]…… 题解列表 2025年11月27日 0 点赞 0 评论 8 浏览 评分:0.0
用递归写阶乘求和 摘要:解题思路:用递归写阶乘求和注意事项:参考代码:import java.math.BigDecimal;import java.math.RoundingMode;import java.math.Bi…… 题解列表 2025年11月27日 0 点赞 0 评论 5 浏览 评分:0.0
Py2860-字符串判等 摘要:str1=input().strip().lower().replace('','')str2=inpu…… 题解列表 2025年11月27日 0 点赞 0 评论 7 浏览 评分:0.0
刷题记录2025/11/26 2773:计算线段长度 摘要:解题思路:注意事项:注意绝对值,注意保留三位小数参考代码:#include<stdio.h>#include<math.h>int main(){ double Xa,Ya,X…… 题解列表 2025年11月26日 1 点赞 0 评论 10 浏览 评分:10.0
最长上升序列(动态规划) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int max(int a,int b){ int max=(a>b) ? a : b;&n…… 题解列表 2025年11月26日 0 点赞 0 评论 12 浏览 评分:0.0