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
ImageCreate()
When I create an image and add text to it I want my text to be replaced with a PNG image, because th
How to grab certain words ??
I am working with this API
Returns JSON.
curl http://letsbetrends.com/api/current_trends
modifying query string with no page refresh
Hi everybody,
I've tried to get info about my problem all over the internet but i didn't find out
Storing Values taken from a DB...
Using this code it will generate a short list from my database
<?php
mysql_connect
[function.file]: failed to open stream: No such file or directory
Okay I wrote this little script to upload a csv file that is located on my webhosts server to a mysq
Procedural to OOP
John Kleijn said that to avoid writing "crappy code", we should learn OOP and common OO pr
split string
Hi all
i have some names (imploded by comma):
Code: toronto,paris,madrid
Now, i would
Problem in String replace program's output
Hi all,
I was trying to make a program which accepts a string and replaces it with another stri
Multiple upload and Resize
I would like some help on my script I have the for my index.php
////
<html&
Php navigation
I have four buttons on a php page.
If i click a button it will redirect to different php pages.