编写题解 2779: 输出绝对值 摘要:解题思路:float为浮点数函数'%.2f'保留两位数abs为绝对值函数注意事项:参考代码:n = float(input())print('%.2f'%(abs(n)…… 题解列表 2024年04月29日 1 点赞 0 评论 509 浏览 评分:9.9
1063: 二级C语言-统计字符 摘要:解题思路:注意事项:参考代码:s = input() a,b,c,d = 0,0,0,0 for i in s: if i.isalpha(): a += 1 …… 题解列表 2024年04月29日 2 点赞 0 评论 422 浏览 评分:0.0
1013: [编程入门]Sn的公式求和 摘要:解题思路:注意事项:参考代码:n = int(input()) s = 0 for i in range(1, n + 1): temp = '2' * i s…… 题解列表 2024年04月29日 0 点赞 0 评论 332 浏览 评分:0.0
Python利用贡献度法求解 摘要:#### 思路借鉴 利用贡献度法,参考链接https://juejin.cn/post/7350185416652275712 ##### 草稿思路 | left | right | lef…… 题解列表 2024年04月29日 0 点赞 0 评论 189 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:num=[[0]*10]*10 s=int(input()) for i in range(s): num[i]=list(map(int,input().…… 题解列表 2024年04月27日 0 点赞 0 评论 217 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:num=list(map(int,input().split())) num+=list(map(int,input().split())) z=zs=f=0 fo…… 题解列表 2024年04月27日 0 点赞 0 评论 506 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:for i in range(1,10): for j in range(1,i+1): print(f'{j}*{i}={i*j:<…… 题解列表 2024年04月27日 0 点赞 0 评论 242 浏览 评分:0.0
无聊的星期六 摘要:--------------------------------------------------print(' '.join(input()[::-1]))------------…… 题解列表 2024年04月27日 0 点赞 0 评论 500 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:mun1,mun2=list(map(int,input().split())) max_num=max(mun1,mun2) min_num=min(mun1,mu…… 题解列表 2024年04月27日 0 点赞 0 评论 308 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:mun1,mun2=list(map(int,input().split())) max_num=max(mun1,mun2) min_num=min(mun1,…… 题解列表 2024年04月27日 0 点赞 0 评论 166 浏览 评分:0.0