Question: java The Member class has a default constructor, a constructor with one parameter, and a constructor with three parameters. Declare the following objects: member 1

java The Member class has a default constructor, a constructor with one parameter, and a constructor with three parameters. Declare the following objects:
member1 with no arguments
member2 with memberName as an argument
member3 with memberName, memberAge, and memberHeight as argumentsimport java.util.Scanner;
public class Roster {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
String memberName;
int memberAge;
double memberHeight;
memberName = scnr.next();
memberAge = scnr.nextInt();
memberHeight = scnr.nextDouble();
member1.print();
member2.print();
member3.print();
}
}

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!