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 

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

1 Expert Approved Answer
Step: 1 Unlock

switch numOfYears case 7 annualInterestRate 725 break case 15 annualInterestRate 850 break ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!