首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
captain_fto
获赞
12
粉丝
1
关注
0
看过 TA
2
男
stanford university
2021
IP属地:江苏
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑captain_fto吗?
发布(40)
评论
刷题
captain_fto
关注TA,不错过内容更新
关注
2021-12-19 00:00
stanford university
题解 | #计算体重指数#
数值计算 weight,height=input().split(" ") bmi=int(weight)/((int(height)/100)**2) print("{:.2f}".format(bmi))
0
点赞
评论
收藏
分享
2021-12-18 23:40
stanford university
题解 | #总成绩和平均分计算#
数值计算 score1,score2,score3=input().split(" ") total_score=float(score1)+float(score2)+float(score3) avg_score=total_score/3 print("{:.2f} {:.2f}".format(total_score,avg_score))
0
点赞
评论
收藏
分享
2021-12-18 23:38
stanford university
题解 | #时间转换#
数值计算 time=input() hour=int(time)//3600 minute=int(time)//60-hour*60 second=int(time)%60 print("{} {} {}".format(hour,minute,second))
0
点赞
评论
收藏
分享
2021-12-18 23:11
stanford university
题解 | #按照格式输入并交换输出#
两次split获取ab值,换位输出 line=input() list=line.split(",") a=list[0].split("=")[1] b=list[1].split("=")[1] print("a={},b={}".format(b,a))
0
点赞
评论
收藏
分享
2021-12-18 23:06
stanford university
题解 | #出生日期输入输出#
字符串截取 birth=input() print("year={}\nmonth={:02d}\ndate={:02d}".format(birth[:4],int(birth[4:6]),int(birth[-2:])))
0
点赞
评论
收藏
分享
2021-12-18 23:01
stanford university
题解 | #ASCII码#
chr(int())取ASCII转换字符 line="73,32,99,97,110,32,100,111,32,105,116,33" for i in line.split(","): print(chr(int(i)),end="")
0
点赞
评论
收藏
分享
2021-12-18 22:56
stanford university
题解 | #字符金字塔#
固定行数遍历输出字符 def tri_pyramid(char): for i in range(1,6): print(" "*(5-i),end="") print((char+" ")*i,end="") print() char=input() tri_pyramid(char)
0
点赞
评论
收藏
分享
2021-12-18 22:44
stanford university
题解 | #学生基本信息输入输出#
re.split拆分输入字符,round取四舍五入 import re line=input() list=re.split("[;,]",line) score1=round(float(list[1])+0.0001,2) score2=round(float(list[2])+0.0001,2) score3=round(float(list[3])+0.0001,2) print("The each subject score of No. {} is {:.2f}, {:.2f}, {:.2f}.".format(list[0],score1,score2,score3))
0
点赞
评论
收藏
分享
2021-12-18 13:44
stanford university
题解 | #获取当前薪水第二多的员工的emp_no以及其对应的薪水salary#
双重select聚合函数取max select a.emp_no,b.salary,a.last_name,a.first_name from employees a,salaries b where a.emp_no=b.emp_no and b.salary=( select max(salary) from salaries where salary not in ( select max(salary) from salaries ) );
0
点赞
评论
收藏
分享
2021-12-18 00:33
stanford university
题解 | #21年8月份练题总数#
device_id去重,模糊匹配日期,2个字段聚合count select count(distinct device_id去重,模糊匹配日期,2个字段聚合count) as did_cnt,count(question_id) as question_cnt from question_practice_detail where date like '2021-08-%';
0
点赞
评论
收藏
分享
1
2
3
关注他的用户也关注了:
牛客网
牛客企业服务