subject
Computers and Technology, 05.04.2021 01:10 mat1413

Teachers in most school districts are paid on a schedule that provides a salary based on their number of years of teaching experience. For example, a beginning teacher in the Lexington School District might be paid $30,000 the first year. For each year of experience after this first year, up to 10 years, the teacher receives a 2% increase over the preceding value.

Write a program that displays a salary schedule, in tabular format, for teachers in a school district. The inputs are:

Starting salary
Annual percentage increase
Number of years for which to print the schedule
Each row in the schedule should contain the year number and the salary for that year

An example of the program input and output is shown below:

Enter the starting salary: $30000
Enter the annual % increase: 2
Enter the number of years: 10

Year Salary

1 30000.00
2 30600.00
3 31212.00
4 31836.24
5 32472.96
6 33122.42
7 33784.87
8 34460.57
9 35149.78
10 35852.78

However I'm having trouble getting the decimal point to the right spot.
Where would I place the round function in this program?? I need help asap.

StartingSal = int(input("Enter the starting salary: $ "))

AnnualIncrease = (int(input("Enter the annual % increase: %")) / 100)

Years = int(input("Enter the number of years: "))

for count in range(1,Years+1):

print("Year ", count, " Salary: ", StartingSal*((1+AnnualIncrease)**(c ount-1)))

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 12:10
Linux is distributed under gnu gpl. why is this important? a. it ensures that only torvalds can profit from the sale of linux b. it prevents unknowledgeable users from downloading programs they don't know how to operate. c. it provides protection for the developers who created linux. d. it states that anyone can copy, modify, and share the program if changes are made public.
Answers: 1
question
Computers and Technology, 23.06.2019 02:30
What is the power dissipated by a resistor with a current of 0.02 a and a resistance of 1,000 ? a. 200 w b. 20 w c. 0.4 w d. 4 w
Answers: 1
question
Computers and Technology, 23.06.2019 06:00
Respond to the following in three to five sentences. select the workplace skill, habit, or attitude described in this chapter that you believe is most important for being a successful employee.
Answers: 1
question
Computers and Technology, 23.06.2019 14:00
What is html ? give a small description about html
Answers: 2
You know the right answer?
Teachers in most school districts are paid on a schedule that provides a salary based on their numbe...
Questions
question
Mathematics, 21.06.2021 14:00
question
Business, 21.06.2021 14:00
question
Chemistry, 21.06.2021 14:00
question
Mathematics, 21.06.2021 14:00
Questions on the website: 13722367