编写题解 1221: 数列问题 摘要:解题思路:注意事项:参考代码:ls=[3,4,5]n=int(input())for i in range(n-3): ls.append(ls[-1]+ls[-2]+ls[-3])print(…… 题解列表 2022年02月22日 0 点赞 0 评论 275 浏览 评分:0.0
编写题解 1219: 数列排序 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): ls=list(map(int,input().split())) t=ls[0…… 题解列表 2022年02月22日 0 点赞 0 评论 236 浏览 评分:0.0
编写题解 1216: 成绩转换 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) if 0<=n<=59: &nbs 题解列表 2022年02月22日 0 点赞 0 评论 279 浏览 评分:0.0
编写题解 1214: 恺撒密码 摘要:解题思路:注意事项:参考代码:dic={ 'A': 'V', 'B': 'W', 'C': 'X…… 题解列表 2022年02月22日 0 点赞 0 评论 341 浏览 评分:8.0
编写题解 1213: 幸运儿(python代码) 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) ls=list(range(1,n+1)) …… 题解列表 2022年02月22日 0 点赞 0 评论 271 浏览 评分:0.0
二级C语言-最小绝对值 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))b=[abs(i) for i in a]index=b.index(min(b))a[index],a[…… 题解列表 2022年02月22日 0 点赞 0 评论 222 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:n = eval(input())s = []for i in range(n): s.append(input())for i in s: l = '…… 题解列表 2022年02月22日 0 点赞 0 评论 211 浏览 评分:0.0
1211: 平方和与立方和 摘要:解题思路:注意事项:参考代码:while True: try: A,B=map(int,input().split()) pin,li=0,0 …… 题解列表 2022年02月22日 0 点赞 0 评论 587 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:解题思路:先给出大致公式,然后再细分不同的情况进行处理注意事项:参考代码:y, m, d = map(int, input().split())num = 30*(m-1) + dfor i in r…… 题解列表 2022年02月22日 0 点赞 0 评论 260 浏览 评分:0.0
1046: [编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:n = int(input())lis = list(map(int, input().split()))m = int(input())for i in range(m…… 题解列表 2022年02月22日 0 点赞 0 评论 168 浏览 评分:0.0