captain_fto
captain_fto
全部文章
分类
题解(54)
归档
标签
去牛客网
登录
/
注册
captain_fto的博客
全部文章
(共40篇)
题解 | #X形图案#
双层循环 #双层循环 def print_pic(n): for i in range(1,n+1): for j in range(1,n+1): if i==j or (i+j)==(n+1): print("*",...
Python3
2021-12-19
2
405
题解 | #竞选社长#
count方法 votes=input() if votes.count('A')>votes.count('B'): print("A") elif votes.count('A')<votes.count('B'): print("B") else: prin...
Python3
2021-12-19
0
286
题解 | #争夺前五名#
此题n干扰项 while True: try: n=input() scores=[] score=input().split(" ") scores=list(map(int,score)) scores.so...
Python3
2021-12-19
0
382
题解 | #变种水仙花#
补齐5位切片求值 for i in range(10000,100000): n="{:05d}".format(i) lily_number=int(n[:1])*int(n[1:])+int(n[:2])*int(n[2:])+int(n[:3])*int(n[3:])+int(...
Python3
2021-12-19
0
352
题解 | #网购#
负值场景需要处理 input_val=input().split(" ") price=float(input_val[0]) month,day,discount=map(int,input_val[1:]) if month==11 and day==11: price=price*0....
Python3
2021-12-19
0
367
题解 | #健康评估#
python中是没有&&及||这两个运算符 input_val=input().split(" ") weight,height=map(float,input_val) bmi=weight/((height)**2) if bmi>18.5 and bmi<23.9:...
2021-12-19
0
347
题解 | #计算平均成绩#
map解包+格式化 scores=input().split(" ") score1,score2,score3,score4,score5=map(int, scores) print("{:.1f}".format((score1+score2+score3+score4+score5)/5))
Python3
2021-12-19
0
351
题解 | #输出学生信息#
输出 print("{}{:4}{}{:4}{}".format("Name","","Age","","Gender")) print("{}".format("-"*21)) print("{}{:4}{}{:5}{}".format("Jack","","18","","man"))
Python3
2021-12-19
0
385
题解 | #大小写转换#
转换 while True: try: char=input() print(char.lower()) except: break
Python3
2021-12-19
0
448
题解 | #计算三角形的周长和面积#
海伦公式S=√p(p-a)(p-b)(p-c) p=(a+b+c)/2 #海伦公式S=√p(p-a)(p-b)(p-c) #p=(a+b+c)/2 import math a,b,c=input().split(" ") circumference=float(a)+float(b)+float(c...
Python3
2021-12-19
0
259
首页
上一页
1
2
3
4
下一页
末页