Mindtap Computing, 1 Term (6 Months) Printed Access Card For Farrell’s Java Programming, 8th
Mindtap Computing, 1 Term (6 Months) Printed Access Card For Farrell’s Java Programming, 8th
8th Edition
ISBN: 9781337091480
Author: Joyce Farrell
Publisher: Cengage Learning
bartleby

Videos

Expert Solution & Answer
Book Icon
Chapter 3, Problem 9PE

Explanation of Solution

Program code:

Insurance.java

//import the packages

import java.util.*;

//define the class Insurance

public class Insurance

{

//define the main() main

public static void main(String args[])

{

//Creating Scanner instance to scan console for User input

Scanner console = new Scanner(System.in);

//prompt the user to enter the current year

System.out.println("please enter the current year: ");

//scan for the user input

int currentyear = console.nextInt();

//prompt the user to enter the birth year

System.out.println("please enter ur birth year : ");

//scan for the input

int birthyear= console.nextInt();

//method calling by paasing values

int premium=premiumAmount(currentyear,birthyear);

//print the value of premium

System.out.println("total premium amount :\t$"+premium);

}

//define the method premiumAmount()

public static int premiumAmount(int cy,int by)

{

//declare an integer variable

int age=cy-by;

//print the age

System.out.println("Age is : "+age);

//divide the age by 10 and save to d

int d=(age)/10;

//print the value of d

System.out.println("decade is : "+d);

//add 15 to d and save to add

int add=d+15;

//return the value

return(add*20);

}

}

Explanation:

The above snippet of code is used create a class “insurance” to declare the static methods to calculate the premium...

Blurred answer
Students have asked these similar questions
Why investing in skills and technology is a critical factor in the financial management aspect of system projects.
why investing in skills and technology is a critical factor in the financial management aspect of systems projects.
Why are requirements changing a significant source of risks in system projects?
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781305480537
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:9781337102124
Author:Diane Zak
Publisher:Cengage Learning
CPP Function Parameters | Returning Values from Functions | C++ Video Tutorial; Author: LearningLad;https://www.youtube.com/watch?v=WqukJuBnLQU;License: Standard YouTube License, CC-BY