蓝桥杯算法提高-能量项链 (Python代码) 摘要:先把代码放着找时间再写题解... ```python N = int(input()) num = list(map(int,input().split())) arr = [([0]…… 题解列表 2019年12月12日 0 点赞 0 评论 1771 浏览 评分:9.9
字符串的输入输出处理-题解(Python代码) 摘要:**代码如下:** n=int(input()) for i in range(n): x=input() print(x) …… 题解列表 2019年12月11日 0 点赞 2 评论 2335 浏览 评分:7.3
弟弟的作业-题解(Python代码)超级简单,易懂!!! 摘要:**代码如下:** n=0 while True: try: x=input() x=x.replace(…… 题解列表 2019年12月11日 0 点赞 1 评论 1320 浏览 评分:6.0
汽水瓶-题解(Python代码) 摘要:**代码如下:** while True: x=int(input()) if x==0: break i…… 题解列表 2019年12月11日 0 点赞 0 评论 2184 浏览 评分:8.9
[编程入门]三个数最大值-题解(Python代码) 摘要:``` # map函数是将列表一个个的传到左边的函数,这里是将字符串转成int类型 lis = map(int, input().strip().split()) # 直接调用python的内置…… 题解列表 2019年12月08日 0 点赞 0 评论 1145 浏览 评分:8.0
[编程入门]第一个HelloWorld程序!-题解(Python代码) 摘要:``` # 先打印星号的个数,然后在手动写上 # print(len('**************************')) print('*'*26) print('Hello Wor…… 题解列表 2019年12月08日 0 点赞 0 评论 1100 浏览 评分:7.5
[竞赛入门]简单的a+b-题解(Python代码) 摘要:``` while True: try: a,b = map(int, input().strip().split()) if a > 2**10 or…… 题解列表 2019年12月08日 0 点赞 0 评论 1647 浏览 评分:7.1
二级C语言-进制转换-题解(Python代码)简单易懂!!! 摘要:**代码如下:** x=int(input()) o="" a=0 while x!=0: a=x%8 x=x//8 …… 题解列表 2019年12月08日 0 点赞 1 评论 1611 浏览 评分:9.0
二级C语言-计算素数和-题解(Python代码) 摘要:**代码如下:** x=input().split() m=int(x[0]);n=int(x[1]) s=0 if m>n: …… 题解列表 2019年12月08日 0 点赞 0 评论 1250 浏览 评分:5.0
二级C语言-阶乘公式求职-题解(Python代码) 摘要:```python n=int(input()) #定义一个函数求分母阶乘和 def get(x): for i in range(1,x): x*=i r…… 题解列表 2019年12月08日 0 点赞 2 评论 1350 浏览 评分:6.7