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
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 then the output is:
Student: Unnamed,
Student: Eve,
public class student
private string name;
private int age;
private double height;
public student Defoult constructor
name "Unnamed";
age ;
height ;
Your code goes here
public void print
system.out.printf student:
name, age, height;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
