1866: 三位数反转 摘要:解题思路:注意事项:参考代码:while True: try: n = input() print(n[::-1]) except: &nb 题解列表 2021年12月31日 0 点赞 1 评论 515 浏览 评分:9.9
1859: 与2无关的数 摘要:解题思路:注意事项:参考代码:def num(x): s = 0 if x%2==0: s += 1 st = str(x) 题解列表 2021年12月31日 0 点赞 0 评论 257 浏览 评分:2.0
1856: 最小三个数 摘要:解题思路:注意事项:参考代码:n = int(input()) m = list(map(int,input().split())) m.sort() for i in range(3): …… 题解列表 2021年12月31日 0 点赞 0 评论 317 浏览 评分:0.0
1855: 输出字符'A'个数 摘要:解题思路:注意事项:参考代码:n = int(input()) for i in range(n): print('A',end='')…… 题解列表 2021年12月31日 0 点赞 0 评论 227 浏览 评分:0.0
1853: 蓝桥杯基础练习-数列排序 摘要:解题思路:注意事项:参考代码:n = int(input()) m = list(map(int,input().split())) m.sort() for i in m: prin…… 题解列表 2021年12月31日 0 点赞 0 评论 276 浏览 评分:0.0
1851: 求所给范围内水仙花数并排列 摘要:解题思路:注意事项:参考代码:while True: try: m,n = map(int,input().split()) s = 0 &nbs 题解列表 2021年12月31日 0 点赞 0 评论 255 浏览 评分:0.0
1848: 求输入数据绝对值 摘要:解题思路:注意事项:参考代码:while True: try: x = input() print('%.2f'%abs(float(x)…… 题解列表 2021年12月31日 0 点赞 0 评论 438 浏览 评分:9.9
1812: [编程基础]输入输出练习之输出图案 摘要:解题思路:注意事项:参考代码:x = str(input()) print(f' {x}') print(f' {x*3} ') print(x*5)…… 题解列表 2021年12月31日 0 点赞 0 评论 1717 浏览 评分:9.9
1810: [编程基础]输入输出练习之精度控制3 摘要:解题思路:注意事项:参考代码:a,b,c,d = map(str,input().split()) print(a,end=' ') print('%4d'%int…… 题解列表 2021年12月31日 0 点赞 0 评论 619 浏览 评分:8.0
1728: 字符串的查找删除-C语言(自己编译器上没错,样例出错求指点) 摘要:```c /*样例中前两行会出现和的额外输入,输出, 其他地方均没错,希望有遇到这个问题的指点一下,其他输出没啥问题 试了两种不同的编译器,均没出现问题,只在平台上出现问题*/ #includ…… 题解列表 2021年12月31日 0 点赞 0 评论 445 浏览 评分:0.0