Lab computer science

 

For this lab you will implement a Java program that uses several different data types and operators.

  1. Start Apache NetBeans.
  2. Create a new project called Lab 3.
  3. Add a java main class called yourlastnameLab3.java with your last name to the project and csci1011.lab3 as the package name
  4. Your program must have the following comments at the top of it

//
// Sample program to calculate the value of a deposit
// after a year of earning interest.
// CSCI 1011 Lab 3

  1. It then should show a welcome message
  2. It then prompts the user to enter an initial deposit amount
  3. It reads the initial deposit value and assigns it into a double variable.
  4. Program then updates the new value of balance by using the following formula:

balance = balance + (balance * 0.049);

  1. Then the program will show a message like:

With a 4.9% APR your deposit will be worth $Y in one year.”

  1. Instead of Y you must show the value of balance variable.
  2. Run the program and test it with sample input. Do this several times.
  3. Modify the program so it uses a named constant in place of 0.049.
  4. Run the program and test it to see if it gives the same values.
  5. Modify the interest rate to 0.059.
  6. Run the program again and test it to see the values it gives have changed.
  7. Did you change the output so it now says 5.9%? If not make that change and run the program again.
  8. Since it would be easier not to have to change the program in two places, declare a new double variable called percent and set its value to 100 times the interest rate.
  9. Modify your output statement so it uses the percent variable instead of 5.9.
  10. Run the program again and test it to make sure it still works properly.
  11. Add some additional statements to compute what the balance will be after a second year of earning interest and display this result along with the original result.
  12. Run the program again and test it to make sure that the new code works.
  13. Here is an output of the program:

Welcome to (your name)’s interest calculator

Please enter your initial deposit amount:

10

With a 5.8999999999999995% APR your deposit will be worth $10.59 in one year.

With a 5.8999999999999995% APR your deposit will be worth $11.21481 in two years.

  1. Upload the file yourlastnameLab3.java to the drop box folder labeled Lab 3.
Tags: No tags