首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
captain_fto
获赞
12
粉丝
1
关注
0
看过 TA
2
男
stanford university
2021
IP属地:江苏
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑captain_fto吗?
发布(40)
评论
刷题
captain_fto
关注TA,不错过内容更新
关注
2021-12-19 15:54
stanford university
题解 | #有序序列插入一个数#
total_num=input() num=input().split(" ") nums=list(map(int,num)) insert_num=input() nums.append(int(insert_num)) nums.sort() for i in range(len(nums)): print(nums[i],end=" ") print()
0
点赞
评论
收藏
分享
2021-12-19 15:50
stanford university
题解 | #公务员面试#
map后注意list转换 while True: try: score=input().split(" ") scores=list(map(int,score)) avg_score=(sum(scores)-max(scores)-min(scores))/(len(scores)-2) print("{:.2f}".format(avg_score)) except: break
0
点赞
评论
收藏
分享
2021-12-19 15:46
stanford university
题解 | #数字三角形#
#双层循环 def print_pic(n): for i in range(1,n+1): for j in range(1,i+1): print("{} ".format(j),end="") print() while True: try: num=input() print_pic(int(num)) except: break
0
点赞
评论
收藏
分享
2021-12-19 15:42
stanford university
题解 | #HTTP状态码#
#key非int类型 def http_status(status_code): http_statu={'200':'OK','202':'Accepted','400':'Bad Request','403':'Forbidden','404':'Not Found','500':'Internal Server Error','502':'Bad Gateway'} return http_statu.get(status_code) while True: try: status_code=input() print(http_s...
0
点赞
评论
收藏
分享
2021-12-19 15:27
stanford university
题解 | #空心正方形图案#
双层循环 #双层循环 def print_pic(n): for i in range(1,n+1): for j in range(1,n+1): if i==1 or i==n or j==1 or j==n: print("* ",end="") else: print(" ",end="") print() while True: try: num=input() print_pic(int(n...
0
点赞
评论
收藏
分享
2021-12-19 15:25
stanford university
题解 | #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("*",end="") else: print(" ",end="") print() while True: try: num=input() print_pic(int(num)) e...
0
点赞
评论
收藏
分享
2021-12-19 01:37
stanford university
题解 | #竞选社长#
count方法 votes=input() if votes.count('A')>votes.count('B'): print("A") elif votes.count('A')<votes.count('B'): print("B") else: print("E")
0
点赞
评论
收藏
分享
2021-12-19 01:34
stanford university
题解 | #争夺前五名#
此题n干扰项 while True: try: n=input() scores=[] score=input().split(" ") scores=list(map(int,score)) scores.sort() score_grade=scores[::-1] for i in range(5): print(score_grade[i],end=" ") print() except: break
0
点赞
评论
收藏
分享
2021-12-19 01:22
stanford university
题解 | #变种水仙花#
补齐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(n[:4])*int(n[4:]) if lily_number==i: print(i,end=" ") print()
0
点赞
评论
收藏
分享
2021-12-19 01:08
stanford university
题解 | #网购#
负值场景需要处理 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.7 elif month==12 and day==12: price=price*0.8 if discount==1: price=price-50 if price<0: price=0 print("{:.2f}".format(price))
0
点赞
评论
收藏
分享
2021-12-19 00:59
stanford university
题解 | #健康评估#
python中是没有&&及||这两个运算符 input_val=input().split(" ") weight,height=map(float,input_val) bmi=weight/((height)**2) if bmi>18.5 and bmi<23.9: print("Normal") else: print("Abnormal")
0
点赞
评论
收藏
分享
2021-12-19 00:48
stanford university
题解 | #计算平均成绩#
map解包+格式化 scores=input().split(" ") score1,score2,score3,score4,score5=map(int, scores) print("{:.1f}".format((score1+score2+score3+score4+score5)/5))
0
点赞
评论
收藏
分享
2021-12-19 00:42
stanford university
题解 | #输出学生信息#
输出 print("{}{:4}{}{:4}{}".format("Name","","Age","","Gender")) print("{}".format("-"*21)) print("{}{:4}{}{:5}{}".format("Jack","","18","","man"))
0
点赞
评论
收藏
分享
2021-12-19 00:14
stanford university
题解 | #大小写转换#
转换 while True: try: char=input() print(char.lower()) except: break
0
点赞
评论
收藏
分享
2021-12-19 00:08
stanford university
题解 | #计算三角形的周长和面积#
海伦公式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) p=circumference/2 area=math.sqrt(p*(p-float(a))*(p-float(b))*(p-float(c))) print("circumference={:.2f} area={:.2f}".format(circumference,area))
0
点赞
评论
收藏
分享
1
2
3
关注他的用户也关注了:
牛客网
牛客企业服务