Question: IN JAVA PLEASE. Complete the convert() method that casts the parameter from adouble to an integer and returns the result.Note that the main() method prints

IN JAVA PLEASE.

Complete the convert() method that casts the parameter from adouble to an integer and returns the result.Note that the main() method prints out the returned value of theconvert() method.

Ex: If the double value is 19.9, then the output is:

19

Ex: If the double value is 3.1, then the output is:

3

1 public class LabProgram { 2 3 4 6 7 8 9

1 public class LabProgram { 2 3 4 6 7 8 9 10 11 12 13 public static int convert (double d) { /* Type your code here */ } public static void main(String[] args) { System.out.println(convert (19.9)); System.out.println(convert(3.1)); }

Step by Step Solution

3.41 Rating (151 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

LabProgramjava Java program to create and test the convert method public class LabProgram meth... 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!