constructor ?
Posted on
16th Feb 2014 07:03 pm by
admin
i have written this program and made 3 constructors in the class and i want to call them in the main and i cant can any one help me and tell me how could i call them in the main
# include
using namespace std ;
Did you know?Explore Trending and Topic pages for more stories like this.
class Triangle {
private :
float side1 ;
float side2 ;
float side3 ;
public :
Triangle () ;
Triangle (float , float , float ) ;
Triangle ( float[3] ) ;
float printAverage () ;
};
Triangle :: Triangle ()
{
float firstSide , secondSide , thirdSide ;
side1 = firstSide ;
side2 = secondSide ;
side3 = thirdSide ;
}
Triangle :: Triangle ( float firstSide , float secondSide , float thirdSide )
{
side1 = firstSide ;
side2 = secondSide ;
side3 = thirdSide ;
}
Triangle :: Triangle ( float side[3] )
{
side1 = side[0] ;
side2 = side[1] ;
side3 = side[2] ;
}
float Triangle::printAverage ()
{
return ( side1 + side2 + side3 ) / 3 ;
}
int main ()
{
float firstSide , secondSide , thirdSide ;
cout << "Enter First Side : " ;
cin >> firstSide ;
cout << "Enter Second Side : " ;
cin >> secondSide ;
cout << "Enter Third Side : " ;
cin >> thirdSide ;
Triangle tri1 = Triangle () ;
Triangle tri2 = Triangle () ;
Triangle tri3 = Triangle () ;
system("pause");
return 0;
}
No comments posted yet
Your Answer:
Login to answer
88
49
Other forums
foreach and array need help combining
Hi guys.
Here's the code
Code: array(
'tag' => 'code',<
What are the two different files you download to update kernel?
What are the two different files you download to update kernel?
Class not found error
I am getting Class 'index' not found in Eval function:
//write config
$pat
PHP and XML image gallery variable issue
I'm trying to display the large image on the same page as the thumbnails, to do that I'm passing a v
Curl timeout breaks script
So im having difficulties with skipping timeout error in curl
my script calls different functions
User information
Hi All,
By using t-code SUIM we get all the user details,if suppose we donot have permission t
include problem
I have my root folder as:
Code: $root = $_SERVER["SITE_HTMLROOT"]; // the server root<
Members Only
Hi all, for my website i have a members area only which on members can veiw, but at the moment anyon
php mysql script to find record
Hi,
Currently I have a simple table with 4 columns. A, B, C, D
If I want to find all
displaying unknown amount of results
I am reading a directory and getting a list of folders in the directory, I want to display the folde