Question: Jump to level 1 The Student class has a default constructor with no parameters. Define a public overloaded constructor that takes a string parameter, an

Jump to level 1
The Student class has a default constructor with no parameters. Define a public overloaded constructor that takes a string parameter, an integer parameter, and a double parameter for the name, the age, and the height of the student.
Ex. If the input is Eve 254.75, then the output is:
Student: Unnamed, 0,0.00
Student: Eve, 25,4.75
public class student {
private string name;
private int age;
private double height;
public student(){// Defoult constructor
name = "Unnamed";
age =;
height =0.0;
}
Y** Your code goes here */
public void print(){
system.out.printf ("student: %s,%d,%.2f?
", name, age, height);
}
}
 Jump to level 1 The Student class has a default constructor

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Databases Questions!