Answered step by step
Verified Expert Solution
Question
1 Approved Answer
You will write Java programs in Eclipse to solve these word problems Read these instructions on how to name and submit the Java files. Please
You will write Java programs in Eclipse to solve these word problems Read these instructions on how to name and submit the Java files. Please make sure your program compiles before you submit it. Make sure you name your Java file and class the same (otherwise it will not compile). For example, the class CompareNames will be in a file called CompareNames.java; remember, the names are case sensitive 1. Do not create a package. You can tell if your file is in a package if there is a package statement near the top of it. 2. Make sure you use the checkbox to create the Javadoc comments, and you put your name in the file as the @author 3. Chapter 3 Labs Create a Project called "CreditScore" with a class called CreditScore Write a Java program to classify the risk of a borrower based on their credit score Ask for the following values (use double variables) Credit Score (must be between 300 and 850) The risk is as follows 800 850 740 799 670 739 580 669 300 579 Excellent Very Good Good Fair Poor The upper bound of each range actually.extends to the start of the next range. For example, 799.99 i:s Very Good If the credit score is out of range, output a message that it is invalid. DO NOT re-prompt for a value Sceditcace by Ray Henry Enter the Credit Score: 900 The credit score is Invalid Sceditcace by Ray Henry Enter the Credit Score: 739.99 The credit score is Good Sceditcace by Ray Henry Enter the Credit Score: 444 The credit score is Poor Sceditcace by Ray Henry nter the Credit Score: e The credit score is Invalid
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