Answered step by step
Verified Expert Solution
Question
1 Approved Answer
being some mistake java programming previous sent by chegg please sent me very detail program as Sample Runs: Run 1: Welcome to the Loan Computation
being some mistake java programming previous sent by chegg please sent me very detail program as
Sample Runs: Run 1: Welcome to the Loan Computation System? Please enter your requested Loan Amount in S: 20000 Please enter the duration of the Loan (in years): 10 Please enter desired annual interest rate: 3 Run 2 (error checking demo): Welcome to the Loan Computation System! Please enter your requested Loan Amount in S: 999 Loan Amount must be >=$1000. Try again! 1000 Please enter the duration of the Loan (in years): 0 Loan duration must be >=1. Try again! 2 Please enter desired annual interest rate: 1 Interest rate must be >=2. Try again! Sample Runs: Run 1: Welcome to the Loan Computation System! Please enter your requested Loan Amount in S: 20000 Please enter the duration of the Loan (in years): 10 Plense enter desired annual interest rate: 3 Run 2 (error checking demo): Welcome to the Loan Computation System! Please enter yout requested Loan Amount in S: 999 Loan Amount must be >=$1000. Try again! 1000 Please enter the duration of the Loan (in years): 0 Loan duration must be >=1. Try again! 2 Please enter desired annual interest rate: 1 Interest rate must be >=2. Try again! CS 2163 JAVA Assignment 2 Assignment worth 30 points You will be creating a loan computation program. Prompt the user to enter the requested loan amount, the duration of the loan, and the desired annual interest rate. Calculate the monthly interest (in dollars), and total payment required (in dollars) for the interest rate entered by the user, up to two times the interest rate. Display results for the interest rates incremented by 0.25. The results must be displayed in a formatted table with uniform spacing. Error checking is required on the following user inputs: Requested loan amount must be >=$1000 Duration of loan must be >=1 year Desired Annual Interest Rate must be >=2% See sample runs on page 2 for more guidance. Complete the program and upload the java solution file to Moodle: - ComputeLoan.java Sample Runs: Run 1: Welcome to the Loan Computation System! Please enter your requested Loan Amount in S: 20000 Please enter the duration of the Loan (in years): 10 Please enter desired annual interest rate: 3 CS 2163 JAVA Assignment 2 Assignment worth 30 points You will be creating a loan computation program. Prompt the user to enter the requested loan amount, the duration of the loan, and the desired annual interest rate. Calculate the monthly interest (in dollars), and total payment required (in dollars) for the interest rate entered by the user, up to two times the interest rate. Display results for the interest rates incremented by 0.25. The results must be displayed in a formatted table with uniform spacing. Error checking is required on the following user inputs: Requested loan amount must be >=$1000 Duration of loan must be >=1 year Desired Annual Interest Rate must be >=2% See sample runs on page 2 for more guidance. Complete the program and upload the java solution file to Moodle: - Computeloan.java Sample Runs: Run 1: Welcome to the Loan Computation System! Please enter your requested Loan Amount in $:20000 Please enter the duration of the Loan (in years): 10 Please enter desired annual interest rate: 3 Sample Runs: Run 1: Welcome to the Loan Computation System! Please enter your requested Loan Amount in S: 20000 Please enter the duration of the Loan (in years): 10 Please enter desired annual interest rate: 3 Run 2 (error checking demo): Welcome to the Loan Computation System! Please enter your requested Loan Amount in S: 999 Loan Amount must be >=$1000. Try again! 1000 Please enter the duration of the Loan (in years): 0 Loan duration must be >=1. Try again! 2 Please enter desired annual interest rate: 1 Interest rate must be >=2. Try again 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