diff --git a/README.md b/README.md index cd99678..33a4fa4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Constructor_Overloading Create a class named 'Box' with three data members- length, breadth and height and a -method to calculate the volume which is 'length*breadth*height'. The class has three +method to calculate the volume which is +volume = length * breadth * height . +The class has three constructors which are : 1 - Having no parameter - values of both length, breadth and height are assigned zero. 2 - Having three numbers as parameters - the three numbers are assigned as length,