题解列表

筛选

2966基础写法

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int sushu(int a){ if……

3050: 最长上升子序列

摘要:解题思路:注意事项:dp[j]=max(dp[j],dp[i]+1);参考代码:#include<stdio.h>#include<stdlib.h>int max(int a……

用递归写阶乘求和

摘要:解题思路:用递归写阶乘求和注意事项:参考代码:import java.math.BigDecimal;import java.math.RoundingMode;import java.math.Bi……