当前位置:网站首页>Example 002: the bonus paid by the "individual income tax calculation" enterprise is based on the profit commission. When the profit (I) is less than or equal to 100000 yuan, the bonus can be increase
Example 002: the bonus paid by the "individual income tax calculation" enterprise is based on the profit commission. When the profit (I) is less than or equal to 100000 yuan, the bonus can be increase
2022-07-05 08:21:00 【Lazy smile】
example 002:“ Calculation of individual income tax ”
# ** subject :** The bonus paid by the enterprise is based on the profit commission . # profits (I) Below or equal to 10 Ten thousand yuan , Bonus can be raised 10%; # Profit is higher than 10 Ten thousand yuan , lower than 20 Ten thousand yuan , lower than 10 For the part of ten thousand yuan, press 10% Royalty , higher than 10 Part of ten thousand yuan , It's a percentage 7.5%; # 20 Wan to 40 Ten thousand hours , higher than 20 Part of ten thousand yuan , It's a percentage 5%; # 40 Wan to 60 Ten thousand times is higher than 40 Part of ten thousand yuan , It's a percentage 3%; # 60 Wan to 100 Ten thousand hours , higher than 60 Part of ten thousand yuan , It's a percentage 1.5%, # higher than 100 Ten thousand yuan , exceed 100 For the part of ten thousand yuan, press 1% Royalty , # Input the profit of the month from the keyboard I, Ask for the total amount of bonus payable ?
# Topic analysis """ When we do manual calculations , It's calculated like this : The assumption is 1500000, It is greater than 10000 Ten thousand , Now let's do it by hand : 10w*0.1+10w*0.075+20w*0.05+20w*0.03+40w*0.015+50w*0.01 """ # ** Program analysis :** Calculate between zones
According to our manual calculation process , In the algorithm, , We also calculate according to the interval , If the profit entered profit Less than or equal to thresholds[i] when , Then use profit Calculate the interest rate corresponding to the current range and add it to the bonus bonus Exit after going on , Otherwise, use the amount corresponding to the current interval * The interest rate of the corresponding range is added to the bonus bonus After the ,profit Subtract the amount corresponding to the current range and enter for loop . The interest rate in the amount range has the corresponding interval interest rate , higher than 100 The part of ten thousand corresponds to the interest rate 1% That is to say 0.01. If our profit is less than or equal to 100 Ten thousand , that profit Out of the cycle is 0, Calculated before outputting the total amount of bonus paid is higher than 100 Wan's bonus is 0*0.01=0.
for j in range(10): # You can test 10 Time
profit = int(input(' Please enter your profit amount : ')) #input The input is a string type , Use int() Turn to an integer
bonus = 0
thresholds = [100000, 100000, 200000, 200000, 400000] # Inter zone calculation
rates = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]
for i in range(len(thresholds)):
print(profit, "--", i, "thresholds[i]", thresholds[i], "rates[i]", rates[i])
if profit <= thresholds[i]:
bonus += profit * rates[i]
profit = 0
break
else:
bonus += thresholds[i] * rates[i]
profit -= thresholds[i]
print(profit)
bonus += profit * rates[-1] # Here is the calculation higher than 100w Part of the bonus
print(" The total amount of bonus paid is : ", bonus)
Output results :
Please enter your profit amount : 1500000
1500000 -- 0 thresholds[i] 100000 rates[i] 0.1
1400000
1400000 -- 1 thresholds[i] 100000 rates[i] 0.075
1300000
1300000 -- 2 thresholds[i] 200000 rates[i] 0.05
1100000
1100000 -- 3 thresholds[i] 200000 rates[i] 0.03
900000
900000 -- 4 thresholds[i] 400000 rates[i] 0.015
500000
The total amount of bonus paid is : 44500.0
边栏推荐
- 关于线性稳压器的五个设计细节
- Summary -st2.0 Hall angle estimation
- STM32 outputs 1PPS with adjustable phase
- leetcode - 445. 两数相加 II
- STM32 single chip microcomputer -- debug in keil5 cannot enter the main function
- Shell script
- General makefile (I) single C language compilation template
- STM32 --- GPIO configuration & GPIO related library functions
- Basic embedded concepts
- Tailq of linked list
猜你喜欢
My-basic application 2: my-basic installation and operation
Shape template matching based on Halcon learning [v] find_ cocoa_ packages_ max_ deformation. Hdev routine
实例008:九九乘法表
Classic application of MOS transistor circuit design (2) - switch circuit design
C, Numerical Recipes in C, solution of linear algebraic equations, LU decomposition source program
Semiconductor devices (I) PN junction
UE像素流,来颗“减肥药”吧!
实例001:数字组合 有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少?
STM32 single chip microcomputer - bit band operation
Shell script
随机推荐
Let's briefly talk about the chips commonly used in mobile phones - OVP chips
Summary of SIM card circuit knowledge
Explain task scheduling based on Cortex-M3 in detail (Part 2)
Volatile of C language
Count the number of inputs (C language)
Soem EtherCAT source code analysis I (data type definition)
Ble encryption details
Why is 1900 not a leap year
关于线性稳压器的五个设计细节
Void* C is a carrier for realizing polymorphism
Shell script realizes the reading of serial port and the parsing of message
Live555 push RTSP audio and video stream summary (III) flower screen problem caused by pushing H264 real-time stream
Summary -st2.0 Hall angle estimation
如何写Cover Letter?
Talk about the function of magnetic beads in circuits
H264 (I) i/p/b frame gop/idr/ and other parameters
STM32 tutorial triple ADC interleaved sampling
C WinForm [help interface - send email] - practice five
【云原生 | 从零开始学Kubernetes】三、Kubernetes集群管理工具kubectl
Soem EtherCAT source code analysis II (list of known configuration information)