牛客794719286号
牛客794719286号
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
牛客794719286号的博客
全部文章
(共55篇)
题解 | #牛牛的通勤#
dis = int(input()) time1 = dis / 1.0 time2 = dis / 10 + 10 print('w' if time1&nb...
2022-08-09
0
186
题解 | #统计数据正负个数#
nums = list(map(int, input().split())) po = [] ne = [] for num in nums: po.a...
2022-08-09
2
182
题解 | #判断是不是字母#
while True: try: get = input() &n...
2022-08-08
0
167
题解 | #小乐乐找最大数#
print(max(list(map(int, input().split()))))
2022-08-08
0
168
题解 | #健康评估#
weight, high = map(float, input().split()) BMI = weight / (high) ** 2 print("Normal" if BM...
2022-08-08
0
149
题解 | #判断是元音还是辅音#
V_list = ['a', 'e', 'i', 'o', 'u'] while True: try: &nb...
2022-08-08
0
170
题解 | #判断整数奇偶性#
while True: try: print("Even" if int(input()) % 2&nbs...
2022-08-08
0
144
题解 | #及格分数#
while True: try: print("Pass" if int(input()) >= 6...
2022-08-08
0
193
题解 | #计算三角形的周长和面积#
a, b, c = map(float, input().split()) cir = a + b + c p = cir / 2 s =&...
2022-08-07
0
225
题解 | #正数输出器#
print(abs(int(input())))
2022-08-03
7
256
首页
上一页
1
2
3
4
5
6
下一页
末页