...

/

Challenge 2: Calling a Constructor from a Constructor

Challenge 2: Calling a Constructor from a Constructor

Can you call a constructor from another constructor? A solution is placed in the "show solution" section to help you, but we would suggest you try to solve it on your own first.

Problem Statement

A class can have multiple parameterized constructors which can call each other.

You are ...