ITSD322U3IP

profileDanish123

 

Assignment Details

Create a Java application called "RateCalculator." In this application, create a custom class named "Calculator." In the Calculator class, create a method called "Multiply" which accepts two incoming integer variables. Within the Multiply method, create an integer variable to store the total, then calculate the total based on the two incoming variables. Return the total.

In the project class, within the main() method, declare integer variables named "firstNum" and "secondNum" and set their initial values to any number between 1 and 9. Create an additional integer variable called "output." Then write code to declare a member of the Calculator class called "myCalc" and then utilize myCalc to call the Multiply method to calculate the result of firstNum times secondNum. Store the result in "output", and present the result on screen.

Within the Calculator class, create methods similar to Multiply called "Add", "Subtract", and "Divide." Create appropriate logic within these methods, and display their use in the main method of the project class. (These methods will not be utilized when the program runs, but the code must be present.)

Write appropriate in-line comments in both the project class and the Calculator class to explain each line of code in your program.

Summary:

  • Create an application called "RateCalculator"
  • Create a custom class with the name and features listed above
  • Create methods within the Calculator class to perform the calculations
  • Write code in the Calculator class (in the main() method) to execute the methods from the Calculator class

Your deliverable for this assignment is the NetBeans project you created using the steps above (ZIP the whole folder that contains the project).

Note: There is no user input in this program. The values that will be calculated are the values that you state when you declare "firstNum" and "secondNum".

    • 3 years ago
    • 20
    Answer(1)

    Purchase the answer to view it

    blurred-text
    NOT RATED
    • attachment
      second.java
    • attachment
      main.java