当前位置:网站首页>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
边栏推荐
- Working principle and type selection of common mode inductor
- STM32---ADC
- [trio basic tutorial 16 from introduction to proficiency] UDP communication test supplement
- 亿学学堂给的证券账户安不安全?哪里可以开户
- 实例007:copy 将一个列表的数据复制到另一个列表中。
- 【三层架构及JDBC总结】
- Problem solving: interpreter error: no file or directory
- C language # and #
- Compilation warning solution sorting in Quartus II
- Explain task scheduling based on Cortex-M3 in detail (Part 2)
猜你喜欢

STM32 virtualization environment of QEMU
![[cloud native | learn kubernetes from scratch] III. kubernetes cluster management tool kubectl](/img/8a/702019b44c8e60dffbcd898330afcb.png)
[cloud native | learn kubernetes from scratch] III. kubernetes cluster management tool kubectl
![[trio basic tutorial 18 from introduction to proficiency] trio motion controller UDP fast exchange data communication](/img/05/0f63e4cd3da24e5b956ec5899b939d.jpg)
[trio basic tutorial 18 from introduction to proficiency] trio motion controller UDP fast exchange data communication

C, Numerical Recipes in C, solution of linear algebraic equations, LU decomposition source program

如何写Cover Letter?

Why is 1900 not a leap year

Drive LED -- GPIO control

STM32---IIC

More than 90% of hardware engineers will encounter problems when MOS tubes are burned out!

C language # and #
随机推荐
Sizeof (function name) =?
STM32---IIC
Bootloader implementation of PIC MCU
Bluebridge cup internet of things basic graphic tutorial - GPIO output control LD5 on and off
Measurement fitting based on Halcon learning [II] meaure_ pin. Hdev routine
[trio basic from introduction to mastery tutorial 20] trio calculates the arc center and radius through three points of spatial arc
Shape template matching based on Halcon learning [v] find_ cocoa_ packages_ max_ deformation. Hdev routine
Live555 push RTSP audio and video stream summary (I) cross compilation
go依赖注入--google开源库wire
Shape template matching based on Halcon learning [VII] reuse_ model. Hdev routine
Let's briefly talk about the chips commonly used in mobile phones - OVP chips
【云原生 | 从零开始学Kubernetes】三、Kubernetes集群管理工具kubectl
Class of color image processing based on Halcon learning_ ndim_ norm. hdev
Introduction of air gap, etc
Talk about the circuit use of TVs tube
C WinForm [help interface - send email] - practice five
【三层架构及JDBC总结】
Step motor generates S-curve upper computer
Soem EtherCAT source code analysis attachment 1 (establishment of communication operation environment)
Arduino uses nrf24l01+ communication