不错就是对
不错就是对
全部文章
分类
题解(256)
归档
标签
去牛客网
登录
/
注册
不错就是对的博客
Work hard and be nice to people.
全部文章
(共240篇)
题解 | #带空格直角三角形图案#
BC102 带空格直角三角形图案 思路: step1:先输出空格;在输出✳和空格; 代码如下: while True: try: n = int(input()) i = 1 while i <= n: j = 0...
Python3
2022-03-26
0
393
题解 | #翻转直角三角形图案#
BC101 翻转直角三角形图案 思路: step1:与正序相反,调转输出即可; 代码如下: while True: try: n = int(input()) i = 0 while i < n: j = n ...
Python3
2022-03-26
0
309
题解 | #直角三角形图案#
BC100 直角三角形图案 思路: step1:双层循环,外层循环控制高度,内层循环控制宽度; 代码如下: while True: try: n = int(input()) i = 0 while i < n: ...
Python3
2022-03-26
0
326
题解 | #正方形图案#
BC99 正方形图案 思路: step1:逐行打印; 代码如下: while True: try: n = int(input()) i = 0 while i < n: print('* ' * n) ...
Python3
2022-03-26
0
329
题解 | #线段图案#
BC98 线段图案 思路: step1:按要求输出*的个数; 代码如下: while True: try: n = int(input()) print('*' * n) except: break
Python3
2022-03-26
0
435
题解 | #回文对称数#
BC97 回文对称数 思路: step1:使用[::-1]检查正序倒序是否相等,并打印相等的数; 代码如下: n = int(input()) i = 1 while i <= n: if str(i) == str(i)[::-1]: print(i) i +...
Python3
2022-03-26
1
486
题解 | #小乐乐与进制转换#
BC95 小乐乐与进制转换 思路: step1:倒序排列余数法; 代码如下: n = int(input()) c = [] while n != 0: x = n%6 c.append(x) n = n//6 c = c[::-1] for i in c: prin...
Python3
2022-03-26
1
434
题解 | #反向输出一个四位数#
BC94 反向输出一个四位数 思路: step1:使用[::-1]反向打印; 代码如下: n = input() print(n[::-1])
Python3
2022-03-26
1
375
题解 | #公务员面试#
BC93 公务员面试 思路: step1:输入一组数,求出筛选后的均值,格式化输出; 代码如下: while True: try: n = input().split() n1 = list(map(int,n)) m = 0 ...
Python3
2022-03-26
0
399
题解 | #变种水仙花#
BC92 变种水仙花 思路: step1:按照要求筛选;加入创立的列表内,按要求打印; 代码如下: i = 10000 c = [] while i <= 99999: if (int(str(i)[0]) * int(str(i)[1:])) + (int(str(i)[0:2]) ...
Python3
2022-03-26
0
349
首页
上一页
5
6
7
8
9
10
11
12
13
14
下一页
末页