1851: 求所给范围内水仙花数并排列 摘要:解题思路:注意事项:参考代码:while True: try: m,n = map(int,input().split()) s = 0 &nbs 题解列表 2021年12月31日 0 点赞 0 评论 394 浏览 评分:0.0
1848: 求输入数据绝对值 摘要:解题思路:注意事项:参考代码:while True: try: x = input() print('%.2f'%abs(float(x)…… 题解列表 2021年12月31日 0 点赞 0 评论 635 浏览 评分:9.9
1812: [编程基础]输入输出练习之输出图案 摘要:解题思路:注意事项:参考代码:x = str(input()) print(f' {x}') print(f' {x*3} ') print(x*5)…… 题解列表 2021年12月31日 0 点赞 0 评论 1988 浏览 评分:9.9
1810: [编程基础]输入输出练习之精度控制3 摘要:解题思路:注意事项:参考代码:a,b,c,d = map(str,input().split()) print(a,end=' ') print('%4d'%int…… 题解列表 2021年12月31日 0 点赞 0 评论 809 浏览 评分:8.0
1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路:太简单了,凑点字数吧注意事项:参考代码:a,b,c = map(int,input().split())print(b)…… 题解列表 2021年12月31日 0 点赞 0 评论 1045 浏览 评分:9.3
1805: 蓝桥杯算法提高- c++_ch02_03 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split()) if a == b: print(0) else: if a == 0: …… 题解列表 2021年12月31日 0 点赞 0 评论 393 浏览 评分:0.0
1804: 蓝桥杯算法提高- c++_ch02_02 摘要:解题思路:注意事项:参考代码:a,b,c = map(str,input().split()) if c == '+': print(int(a)+int(b),end=&…… 题解列表 2021年12月31日 0 点赞 0 评论 706 浏览 评分:0.0
1798: 汪汪与打针(python) 摘要:while True: try: a,b = map(int,input().split()) if a<120:   题解列表 2021年12月31日 0 点赞 0 评论 435 浏览 评分:0.0
1793: 玉龙学长买雪糕 摘要:解题思路:注意事项:参考代码:n = int(input()) s = [1] for i in range(n-1): s.append(s[-1]*2+1) print(sum(s…… 题解列表 2021年12月30日 0 点赞 0 评论 498 浏览 评分:9.9
python,简单的循环与判断 摘要:解题思路:使用简单的for循环和if判断即可。注意事项:参考代码:list=[3,7,5,13,25,45,78,23,8,33,9,19,28,41,50]s = eval(input())if s…… 题解列表 2021年12月30日 0 点赞 0 评论 462 浏览 评分:9.9