Question: Convert the following if-else-if statement into an equivalent switch statement. // Find interest rate based on year if (numofYears == 7) annualInterestRate 7.25; else
Convert the following if-else-if statement into an equivalent switch statement. // Find interest rate based on year if (numofYears == 7) annualInterestRate 7.25; else if (numofYears == 15) annualInterestRate 8.50; else if (numOfYears == 30) annualInterestRate = 9.0; else { System.out.println ("Wrong number of years"); System.exit (0); V } Answer: =
Step by Step Solution
3.49 Rating (152 Votes )
There are 3 Steps involved in it
switch numOfYears case 7 annualInterestRate 725 break case 15 annualInterestRate 850 break ... View full answer
Get step-by-step solutions from verified subject matter experts
