From 7b6ceae59a1ef8cc7fb75bd93349861e39b8d0bd Mon Sep 17 00:00:00 2001 From: sunil17112 <52931377+sunil17112@users.noreply.github.com> Date: Sun, 13 Oct 2019 14:31:31 +0530 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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,