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

The Member class has a default constructor, a constructor with two parameters, and a constructor with three parameters. Declare the following objects:
member1 with no arguments
member 2 with memberName and memberAge as arguments
member3 with memberName, memberAge, and memberHeight as arguments
Ex. If the input is Ana 315.00, then the output is:
Member: Unnamed, -1,0.00
Member: Ana, 31,0.00
Member: Ana, 31,5.00
import java.util.Scanner;
public class Organization {
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();
Y* Your code goes here "I
member1.print();
member2.print();
 The Member class has a default constructor, a constructor with two

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!