Question: There are two questions to this Project 1: Write a program to compute the interest due, total amount due, and the minimum payment for a
Project 1: Write a program to compute the interest due, total amount due, and the minimum payment for a revolving credit account. The program accepts the account balance as input, then adds on the interest to get the total amount due. The rate schedules are the following: The interest is 1.5 percent on the first $1,000 and 1 percent on any amount over that. The minimum payment is the total amount due if that is S10 or less, otherwise, it is $10 or 10 percent of the total amount owed, whichever is larger. Your program should include a loop that lets the user repeat this calculation until the user says she or he is done. Project 2: Write a program that finds the temperature that is the same in both Celsius and Fahrenheit. The formula to convert from Celsius to Fahrenheit is Fahrenheit- 9x Celsius) Your program should create two integer variables for the temperature in Celsius and Fahrenheit. nitialize the temperature to 100 degrees Celsius. In a loop, decrement the Celsius value and compute the corresponding temperature in Fahrenheit until the two values are the same. Since you are working with integer values, the formula may not give an exact result for every possible Celsius temperature. This will not affect your solution to this particular
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
