
a.
Explanation of Solution
Program:
File name: “RetirementGoal.java”
//Import necessary header files
import java.util.Scanner;
//Define a class named RetirementGoal
public class RetirementGoal
{
//Define main method
public static void main (String[] args)
{
//Create an object for the Scanner class
Scanner input = new Scanner(System.in);
//Declare the variables
int years;
int saveAmount;
int total;
/*Prompt the user to enter the number of years the user
has until retirement */
System.out.print("How many years until retirement? >> ");
years = input.nextInt();
/*While condition if the user enters 0 or a negative number*/
while(years <= 0)
{
//Print the error message
System.out.println("Years cannot be 0 or negative");
//Reprompt the user to make a valid entry
System...
b.
Explanation of Solution
Program:
File name: “RetirementGoal2.java”
//Import necessary header files
import java.util.Scanner;
//Define a class named RetirementGoal2
public class RetirementGoal2
{
//Define main method
public static void main (String[] args)
{
//Create an object for the Scanner class
Scanner input = new Scanner(System.in);
//Declare the variables
int years;
int saveAmount;
int total;
final double RATE = 0.04;
/*Prompt the user to enter the number of years the user
has until retirement */
System.out.print("How many years until retirement? >> ");
years = input.nextInt();
/*While condition if the user enters 0 or a negative number*/
while(years <= 0)
{
//Print the error message
System.out.println("Years cannot be 0 or negative");
//Reprompt the user to make a valid entry
System.out.print("Please renter years >> ");
years = input.nextInt();
}
/*Prompt the user to enter the amount of money the user can save annually*/
System.out.print("How much can you save annually? >> ");
saveAmount = input.nextInt();
/*While condition if the user enters 0 or a negative number*/
while(saveAmount <= 0)
{
//Print the error message
System...

Trending nowThis is a popular solution!

- using r languagearrow_forwardCompute a Monte Carlo estimate o of 0.5 0 = L ē -xdx 0 by sampling from Uniform(0, 0.5). Find another Monte Carlo estimator 0* by sampling from the exponential distribution. Use simulations to estimate the variance of Ô and ⑦*, which estimator has smaller variance?arrow_forwardimport tkint class ShowInfoGUI:def __init__(self):# Create the main windowself.main_window = tkinter.Tk() # Create two framesself.top_frame = tkinter.Frame(self.main_window)self.bottom_frame = tkinter.Frame(self.main_window)arrow_forward
- JOB UPDATE Apply on- COMPANY VinkJobs.com @ OR Search "Vinkjobs.com" on Google JOB PROFILE JOB LOCATION INTELLIFLO APPLICATION DEVELOPER MULTIPLE CITIES GLOBAL LOGIC SOFTWARE ENGINEER/SDET DELHI NCR SWIGGY SOFTWARE DEVELOPMENT BENGALURU AVALARA SOFTWARE ENGINEER (WFH) MULTIPLE CITIES LENSKART FULL STACK DEVELOPER MULTIPLE CITIES ACCENTURE MEDPACE IT CUST SERVICE SOFTWARE ENGINEER MUMBAI MUMBAI GENPACT BUSINESS ANALYST DELHI NCR WELOCALIZE WORK FROM HOME MULTIPLE CITIES NTT DATA BPO ASSOCIATE DELHI NCRarrow_forwardHow can predictive and prescriptive modeling be used to measure operational performance in real-time? Do you see any potential downsides to this application? Can you provide an example?arrow_forwardTracing the Recursion. Tracing the Recursion. Observe the recursive solution provided below. 1. Which line(s) of this program define(s) the base case of sumOfDigits() method? 2. Which line(s) of this program include recursive call(s)? 3. Trace the recursion below. You must show the trace step by step; otherwise – little to no credit! 4. Show me the final result! 1 public class SumOfDigitsCalculator { 30 123456 7% 8 public static void main(String[] args) { System.out.println(sumOfDigits(1234)); } public static int sumOfDigits (int number) { if (number == 0) 9 10 11 12 } 13 } else return 0; return number % 10 + sumOfDigits (number / 10);arrow_forward
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTProgramming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781305480537Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTProgramming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage Learning



