Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I Need The (Analysis , Design , Testing , Source Code) For This. I Need To Complete This Assignment ASAP , But I Can't Get
I Need The (Analysis , Design , Testing , Source Code) For This.
I Need To Complete This Assignment ASAP , But I Can't Get It Through.
I Got Submission To Do Very Soon, Is There Anyone To Help Me ?
LEARNING OUTCOMES By completing this assignment, students should be able to: Assign expressions to variables Perform arithmetic calculations using Java Implement console user input/output in their programs. Use if-else statements to control the flow of logic in a program. Use loops to repeat statements in a program. SPECIFICATION Compound Value Suppose you save $100 each month into a savings account with the annual interest rate 5%. So, the monthly interest rate is 0.05 / 12 = 0.00417. After the first month, the value in the account becomes 100 (1 +0.00417) = 100.417 After the second month, the value in the account becomes (100 + 100.417) * (1 +0.00417) = 201.252 After the third month, the value in the account becomes (100 + 201.252) * (1 +0.00417) = 302.507 and so on. Write a program that prompts the user to enter an amount (eg. 100), the annual interest rate (eg. 5), and the number of months (eg. 6), and displays the amount in the savings after the given month. DELIVERABLES The following items must be uploaded to Blackboard before or on the due date: 1. A report (no more than 1000 words, excluding the source code) containing the following sections: Analysis Describe the problem including input and output in your own words. Design Describe the major steps for solving the problem. You may even include pseudocode, flowcharts, or relevant design diagrams to help describe the design of your solution. Testing Describe how you test this program. The following table may be used to document your test cases. Test ID Description Expected Results Actual Results iv. Source code Include your source code here. Please ensure that your program is properly commented. GRADING RUBRIC Please refer to the rubric in BlackboardStep 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