题解列表

筛选

2823: 计算分数加减表达式的值

摘要:解题思路:数学题,没那么复杂注意事项:一个公式拿下参考代码:#include <stdio.h>#include <math.h>int main(){ int n; scan……

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……