[编程入门]电报加密-题解(Python代码) 摘要:** 代码如下:** x=input() s="" for i in x: if i>="a" and i="A" and i…… 题解列表 2019年12月04日 0 点赞 6 评论 2064 浏览 评分:9.9
[编程入门]三个字符串的排序-题解(Python代码) 摘要:**代码如下:** a=input();b=input();c=input() x=[a,b,c] x.sort() for i in x: p…… 题解列表 2019年12月04日 0 点赞 0 评论 2178 浏览 评分:9.9
[编程入门]自定义函数之数字后移-题解(Python代码) 摘要:**代码如下:** m=int(input()) x=list(map(int,input().split())) n=int(input()) a=0 …… 题解列表 2019年12月04日 0 点赞 0 评论 2033 浏览 评分:9.9
蓝桥杯历届试题-蚂蚁感冒-题解(Python代码) 摘要: 如图所示,其中橙色箭头的为已感染蚂蚁,称为母体。 那么它在行走过程中,比他值大的向右走的蚂蚁正…… 题解列表 2019年12月04日 0 点赞 0 评论 1530 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换-题解(C语言代码)满分代码!! 摘要: #include int main() { long long int t; scanf("%lld",&t); int h=0,m=…… 题解列表 2019年12月04日 0 点赞 0 评论 1160 浏览 评分:9.9
蓝桥杯基础练习VIP-矩阵乘法-题解(Java代码) 摘要: import java.text.DecimalFormat; import java.util.Scanner; **//很多人没有AC成功可能都是忘记考虑矩阵的0次幂了** public…… 题解列表 2019年12月04日 0 点赞 0 评论 1633 浏览 评分:9.9
[搞比利]克鲁斯卡尔算法2050题-55.战争通讯-题解(C++代码) 摘要: //这题是真的丧病 //卡了我好长时间 #include using namespace std; int cost[10086];//记录花费 bool CNM[10086];…… 题解列表 2019年12月05日 0 点赞 0 评论 949 浏览 评分:9.9
蓝桥杯算法提高VIP-队列操作-题解(C语言代码) 摘要: #include #include typedef int ElementType ; typedef struct listnode { ElementType e…… 题解列表 2019年12月05日 0 点赞 0 评论 996 浏览 评分:9.9
蓝桥杯算法提高VIP-理财计划-题解(C语言代码)满分 题解!!! 摘要:####注意防止四舍五入 #####参考代码: #include int main() { double m,t,p,shouyi=0; …… 题解列表 2019年12月05日 0 点赞 0 评论 1669 浏览 评分:9.9
小九九-题解(C语言代码)满分题解!! 摘要: #include int main() { for(int i=1;i…… 题解列表 2019年12月05日 0 点赞 6 评论 3893 浏览 评分:9.9