Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

pls help to do analysis and pseudocode its urgent LEARNING OUTCOMES By completing this assignment, students should be able to Assign expressions to variables Perform

image text in transcribed

pls help to do analysis and pseudocode

its urgent

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%.50, 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 (ep 5). and the number of months (es, 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

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

What is happening in this situation? What are the consequences?

Answered: 1 week ago