Python代码-8除不尽的数 摘要:```pythondef check(n): if n % 8 == 1: if (n//8) % 8 == 1: if (n//8//8) …… 题解列表 2025年02月15日 0 点赞 0 评论 123 浏览 评分:0.0
3018:末两位数 摘要:解题思路:注意事项:参考代码:n=int(input())sum=1992**na=sum%100print(f'{a:0>2d}')…… 题解列表 2025年02月15日 0 点赞 0 评论 72 浏览 评分:0.0
3013: 求小数的某一位 摘要:解题思路:注意事项:参考代码:a,b,n=map(int,input().split())c=float(a/b)for i in range(1,n+1): c=a*10/…… 题解列表 2025年02月14日 0 点赞 0 评论 121 浏览 评分:0.0
菲暃要加油——成绩归类 摘要:参考代码:l=list(map(eval,input().split()))whilemin(l)>0:l.extend(li…… 题解列表 2025年02月13日 0 点赞 0 评论 171 浏览 评分:0.0
菲暃要加油——寻找矩阵最值 摘要:参考代码:n=int(input())l=[]foriinrange(n):li=list(map(ev…… 题解列表 2025年02月13日 0 点赞 0 评论 99 浏览 评分:0.0
菲暃要加油——温度转换 摘要:参考代码:foriinrange(-100,155,5):print('c='+str(i)+&…… 题解列表 2025年02月13日 0 点赞 0 评论 119 浏览 评分:0.0
菲暃要加油——分段函数 摘要:参考代码:frommathimport*x=eval(input())ifx<0:pr…… 题解列表 2025年02月13日 0 点赞 0 评论 138 浏览 评分:0.0
菲暃要加油——最小绝对值 摘要:l1=list(map(int,input().split()))l2=[]foriinl1:l2.…… 题解列表 2025年02月13日 0 点赞 0 评论 157 浏览 评分:0.0
菲暃要加油——计负均正 摘要:参考代码:l=list(map(int,input().split()))l+=list(map(int,input().split()))z1=len(l)fu=0zheng=0…… 题解列表 2025年02月13日 0 点赞 0 评论 159 浏览 评分:0.0