首页 > 其他分享 >if语句

if语句

时间:2022-09-04 19:46:26浏览次数:44  
标签:语句 hrs hours rat num 40 input

**3.1 Conditional Execution** Problem
Write a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay the hourly rate for the hours up to 40 and 1.5 times the hourly rate for all hours worked above 40 hours. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75). You should use input to read a string and float() to convert the string to a number. Do not worry about error checking the user input - assume the user types numbers properly.
根据工作时间和每小时工资计算总工资。当工作时长小于40小时,每小时工资为10.50;对于超过部分给予正常工作的1.5倍工资。此处假定45小时。 必须使用input()和float()函数。
Desired Output
498.75
Code
# This first line is provided for you
hrs_str = input("Enter Hours:")
rat_str = input("Enter Ratio:")

hrs_num = float(hrs_str)
rat_num = float(rat_str)

if hrs_num > 40 ://一定要用:  且本code要用if
print(40*rat_num +(hrs_num-40)*rat_num *1.5)
else://else后也要加 :
print(hrs_num*rat_num )
————————————————
版权声明:本文为CSDN博主「yanqs_whu」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/u012348774/article/details/78106407

标签:语句,hrs,hours,rat,num,40,input
From: https://www.cnblogs.com/zhaoxue428/p/16655766.html

相关文章

  • SpringBoot+mybatis项目 配置控制台打印sql语句
    @SpringBoot+mybatis项目配置控制台打印sql语句前几天在做项目的过程中,使用的持久层框架是mybatis,在mapper.xml中自己写sql,当时写完了自己的业务代码,测试时候一直觉得数......
  • Explain-SQL语句分析
    explainmysql数据库下,为了判断一条sql是如何执行的,我们需要explain命令。explain命令并不会真正去执行sql语句,而是对语句做一个分析。explain可以告诉我们什么sql......
  • 常用MySQL语句
    1.客户端登录在终端输入mysql-u[用户名]-p[密码] 2.数据库级别操作//创建数据库createdatabase[dbname];//查看数据库列表showdatabases;//选择数据......
  • SQLServer 查询近期执行的sql语句
    SELECTTOP1000QS.creation_timeAS'执行时间',QS.total_elapsed_time/1000AS'耗时',QS.total_rows,SUBSTRING(ST.text,qs.statement_start_offset/2+......
  • 查询SQL Server数据库执行时间最长的sql语句
    SELECT(total_elapsed_time/execution_count)/1000N'平均时间ms',total_elapsed_time/1000N'总花费时间ms',total_worker_time/1000N'所用的CPU总时间ms',total_p......
  • Rust 从入门到精通06-语句和表达式
    1、语句和表达式语句和表达式是Rust语言实现逻辑控制的基本单元。在Rust程序里面,语句(Statement)是执行一些操作但不返回的指令,表达式(Expressions)计算并产生一个值。表......
  • DBA常用查询语句
    ----查看表空间的使用情况SELECTA.TABLESPACE_NAME,A.BYTESTOTAL,B.BYTESUSED,C.BYTESFREE,(B.BY......
  • 循环语句:while
    循环语句:while1.while语句结构:while+条件示例1:whileTrue:print("人生苦短,我用Python。")运行得到的结果是循环打印“人生苦短,我用python。”示例2:while......
  • 新手教新手:3 SQL Select 语句 GROUP BY 子句
    新手教新手:3SQLSelect语句GROUPBY子句SQLSELECT语句中的下一个子句是GROUPBY子句。这将为列中的每个唯一值创建一组行。在按分组的列中具有相同值的所有行将彼......
  • Linux之awk条件语句和循环语句(五)
    1.条件语句1.1IF语句IF条件语句语法格式如下:if(condition)action或者使用花括号:if(condition){action-1action-1..action-n......