求[X,Y]内被除3余1并且被除5余3的整数的和 摘要:```c #include int main(){ int x,y; long long sum=0; scanf("%d%d",&x,&y); for(;x…… 题解列表 2023年02月05日 0 点赞 0 评论 355 浏览 评分:0.0
1466————蓝桥杯基础练习VIP-字符串对比 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2023年02月06日 0 点赞 0 评论 345 浏览 评分:0.0
记忆化搜索 摘要:解题思路:自顶而下搜索最小值注意事项:记录答案防止时间爆炸参考代码:#include<bits/stdc++.h>#define endl '\n'using namespace st…… 题解列表 2023年02月06日 0 点赞 0 评论 278 浏览 评分:0.0
记录一下DNA这道题的题解 摘要:参考代码:#include<stdio.h>void Print(int len,int re){ while(re) { for(;i<len;i++) …… 题解列表 2023年02月06日 0 点赞 0 评论 286 浏览 评分:0.0
1201: 回文数(一) 摘要:```c #include int huiwen(int n){ int cnt=0,i,k,a[100]; do{ a[cnt]=n%10; cnt++; n/=10…… 题解列表 2023年02月06日 0 点赞 0 评论 819 浏览 评分:0.0
1480: 模拟计算器 思路简单 if判断 摘要:解题思路:输入很简单,不用多说;接下来用5个if判断语句判断加减乘除符号,就完成了。注意事项:参考代码:a,b,c=map(str,input().split())if(c=='+')…… 题解列表 2023年02月06日 0 点赞 0 评论 430 浏览 评分:0.0
python零花钱解法 思路简单 摘要:在网站里面跑不出来 不过可以代入数据进行验算 都是对的nc=list(map(int,input().split()))N=nc[0]#N种金额C=nc[1]#每种金额硬币的数量# print(N)输…… 题解列表 2023年02月06日 0 点赞 0 评论 693 浏览 评分:0.0
自定义函数之字符提取(所有人都看得懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[100]; char a[100]; int count = 0; scanf("%s", &…… 题解列表 2023年02月06日 0 点赞 0 评论 380 浏览 评分:0.0
2801: 奇数求和 摘要:解题思路:注意事项:参考代码:s = 0a,b = map(int,input().split())for i in range(a,b+1): if i % 2 != 0: s …… 题解列表 2023年02月06日 0 点赞 0 评论 623 浏览 评分:0.0
2802: 满足条件的数累加 摘要:解题思路:注意事项:参考代码:s = 0m,n = map(int,input().split())for i in range(m,n+1): if i % 17 == 0: s…… 题解列表 2023年02月06日 0 点赞 0 评论 435 浏览 评分:0.0