Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create a new project called 04.07 Calling Methods in the Mod04 Assignments folder. Create a class called MathTrick in the newly created project folder. Complete
- Create a new project called 04.07 Calling Methods in the Mod04 Assignments folder.
- Create a class called MathTrick in the newly created project folder.
- Complete the static methods in the starter code.
- Utilize Math. random() and any other methods from the Math class as needed.
- Utilize .substring() where appropriate.
- Each method should return a value of the correct data type.
- Call the completed static methods in the main method to complete a program that does the following:
- Generate a random 3-digit number so that the first and third digits differ by more than one.
- Now reverse the digits to form a second number.
- Subtract the smaller number from the larger one.
- Now reverse the digits in the answer you got in step c and add it to that number.
- Multiply by one million.
- Subtract 733,361,573.
- Then, replace each of the digits in your answer, with the letter it corresponds to using the following table:
- Now reverse the letters in the string to read your message backward.
- Open the MathTrick.java file to begin your program.
Notice that these instructions double as pseudocode and including pseudocode in a program provides documentation.
Expected Output: The output of the program should resemble the following screen shot:
Could someone help, please?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started