1267: A+B Problem(c++)题解 摘要:写这篇题解完全是消磨时间 代码 ```cpp #include using namespace std; int main() { int a,b; while(cin…… 题解列表 2023年05月04日 0 点赞 0 评论 437 浏览 评分:6.0
3142: 蓝桥杯2023年第十四届省赛真题-平方差 摘要:```cpp #include using namespace std; int count=0; int main() { int n1,n2; scanf("%d%d…… 题解列表 2023年05月04日 0 点赞 2 评论 1636 浏览 评分:9.2
2997:梯形面积题解(C++) 摘要:一道非常简单的题目数学思想:如果这是一道数学题,非常的好做:150*2/15=20(cm)(15+25)*20/2=400(cm2)解题思路:已知梯形上、下底为15和25。令梯形的高为h,则由已知三角…… 题解列表 2023年05月04日 1 点赞 0 评论 602 浏览 评分:9.9
1671:小九九(c++)双循环+if语句 摘要:解题思路:双循环+if语句//附上“%d*%d=%-3d”数据类型注意事项:判断语句if(i>=j)用于输出矩阵中对角线以下的数据参考代码:#include<iostream>#include<cst…… 题解列表 2023年05月04日 0 点赞 0 评论 355 浏览 评分:9.9
1318: 选课(c++代码) 摘要:```cpp #include #include using namespace std; const int maxn=301; int f[maxn][maxn],bro[maxn],s…… 题解列表 2023年05月03日 0 点赞 0 评论 362 浏览 评分:9.0
1317: 最长公共子序列lcs 摘要:```cpp #include #include using namespace std; int main() { int dp[2002][2002]; memset…… 题解列表 2023年05月03日 0 点赞 0 评论 544 浏览 评分:9.9
1316: 最长不下降子序列的长度 摘要:```cpp #include using namespace std; int main() { int n,t,max=-1,a[5001],b[5001]; scan…… 题解列表 2023年05月03日 0 点赞 0 评论 353 浏览 评分:6.0
1315: 田忌赛马 摘要:```cpp #include using namespace std; int b[10001],bb[10001]; long long sum,t; int main() { …… 题解列表 2023年05月03日 0 点赞 0 评论 372 浏览 评分:9.9
1314: 乘积最大 摘要:```cpp #include using namespace std; int _max(int *a,int n,int k) { if(k==0) { …… 题解列表 2023年05月03日 0 点赞 0 评论 423 浏览 评分:9.3
1312: 最大的算式 摘要:```cpp #include using namespace std; long long dp[16][16]; int sum[16]; int main() { int …… 题解列表 2023年05月03日 0 点赞 0 评论 575 浏览 评分:9.9