这个程度为啥是中等题? 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split()) c=0 for i in range(a,b+1): if i%3==1 and i%5==3: …… 题解列表 2022年08月12日 0 点赞 0 评论 581 浏览 评分:9.9
地宫取宝DP解法 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int N=60,mod=1e9+7; int f[N][N][13][…… 题解列表 2022年08月12日 0 点赞 0 评论 510 浏览 评分:9.9
[编程入门]三个数最大值(c++代码) 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int a,b,c,max; cin>>a>>b>>c; if(a>max) max=a;…… 题解列表 2022年08月12日 0 点赞 0 评论 1169 浏览 评分:0.0
矩阵对角求和 摘要:解题思路:1)矩阵使用二维数组num[][]来储存2)使用两个for循环输入数据3)主对角线的规律是i==j,副对角线的规律是i + j == 2注意事项:主副对角线的中间同时满足 i==j && i…… 题解列表 2022年08月12日 0 点赞 0 评论 432 浏览 评分:0.0
题解 1023: [编程入门]选择法排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,a[10],b; for(i=0; i<10; i++)//读取十个数 { …… 题解列表 2022年08月12日 0 点赞 0 评论 306 浏览 评分:0.0
[编程入门]三个数最大值(c语言代码) 摘要:解题思路:使用两个if语句即可解答本题注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,max; scanf("%d%d%d",&a,&b,&c); …… 题解列表 2022年08月12日 0 点赞 0 评论 454 浏览 评分:0.0
1461: 蓝桥杯基础练习VIP-FJ的字符串(函数的递归调用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void print(int n);int main(void){ int n; scanf("%d",&n); print(n); r…… 题解列表 2022年08月12日 0 点赞 0 评论 442 浏览 评分:0.0
1531的题解,十分简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int ans[111]={}; int n; …… 题解列表 2022年08月12日 0 点赞 0 评论 520 浏览 评分:6.0
成绩评定问题 摘要:解题思路:使用if语句锁定成绩区间即可,简洁明了注意事项:参考代码:#include<stdio.h>int main(){ int c; scanf("%d",&c); if(c>…… 题解列表 2022年08月12日 0 点赞 0 评论 559 浏览 评分:0.0
简单的a+b 题解 摘要:解题思路:输入ab,输出a+b注意事项:参考代码:#include<iostream> using namespace std; int ma…… 题解列表 2022年08月12日 0 点赞 0 评论 443 浏览 评分:0.0