c++ programming
CPSC1012 - Variable and Constant Identification Problems For each of the following problems, identify the required varableis) by underlining Hughighenge or other means. Write down a name and an appropriste simple data fve le z strine. numbec, charncec etc.) for each variable you identify. 1. The Wes Coast siles unit of a compary eenerstes 43 percent ot the conparys weal cuas. Based on this percentage. write a program that will deternine how mach the wed cand ant will eenerate if the compary has 553 milion in ales this yea. 2. Oce acre of land is equivalent to 43.560 square feet. Whise a propram that cakiates the number of acses in a tract of tand with a user provited vilue of seware feet. Lab 1 - Arithmetic Calculations SHOW ME THE MONEY \$\$\$ Using the following formula to calculate the accrued amount of money using the concept of compound interest. A=P(1+npp)nt A= Accrued amount (principal + interest) P= Principal amount r= Annual nominal interest rate as a decimal t= time in decimal years; e.g., 6 months is calculated as 0.5 years. Divide your partial year number of months by 12 to get the decimal years n= number of compounding periods per year Step 1: Create a program named Compound that computes the accrued amount of money using the compound interest formula listed above. The values will be as follows: P (Principle) will be entered by the user T (Time)will be entered by the user in months sccime n will he alwale he 12 irnmnnunded mnnthly and Step 1: Create a program named Compound that computes the accrued amount of money using the compound interest formula listed above. The values will be as follows: P (Principle) will be entered by the user T (Time)will be entered by the user in months Assume n will be always be 12 (compounded monthly) and stored in a constant Your output will show the accrued amount for a principal amount of $10000 and interest rates of 4%,5% and 6.5%. Step 2: Test your program using the following test plan screen shots. If you discover mistakes in your program, correct them, and execute the test plan again. //Section: A0\# - Use camelCase for local variable names. ie. localVariableName - Use PascalCase for constant variable names. ie. ConstantVariableName MARKING RUBRIC Lab 1 - Arithmetic Calculations SHOW ME THE MONEY \$\$\$ Using the following formula to calculate the accrued amount of money using the concept of compound interest. A=P(1+nr)nt A= Accrued amount (principal + interest) P= Principal amount r= Annual nominal interest rate as a decimal t= time in decimal years; e.g., 6 months is calculated as 0.5 years. Divide your partial year number of months by 12 to get the decimal years n= number of compounding periods per year Step 1: Create a program named Compound that computes the accrued amount of money using the compound interest formula listed above. The values will be as follows: P (Principle) will be entered by the user T (Time)will be entered by the user in months