please 'll someone help me to solve this assignments?plzzzz:(
tommorow is last date of submition....!
Regardz
Due Date:30/07/2010
Guidelines
Code should be properly aligned and well commented.
Follow C/C++ rules while writing variables names, function names etc.
Use only Dev C++ for this assignment.
Assignment
Problem Statement: Calculate Area of Triangle of two objects of same class using setfill(), setw() and setprecision() manipulators.
• You are required to write a class. Class should have area, base and height private data members (real numbers).
Class should have
• A default constructor which will initialize all data members with values 2.5 and 2.5 for base and height.
• Getter and setter functions
You are required to create two objects of the same class.
You must assign values of first object through setter functions.
You should have a CalaulateArea method, which will calculate area of
the triangle for both objects.
The formula of Area of triangle = base x height / 2
You should have a Display (public) method for displaying area after
calculation. Display method should also show input values at screen.
You should use setfill() and setw() manipulators for both objects. You can use it in Display method. You should use * as parameter in setfill().
For 2nd object;
User will input for 2nd object and input values should be set for this object.
Setprecision will be used for 2nd object and parameter will be 1.
Area of Triangle
----------------
Object1
Input:******************base = 2.5 , Height = 2.5
Area of Object 1:*******3.125
Object2
Input:******************base = 2.5 , Height = 2.5
Area of Object 2:*******3.1
---------------------------------------------------------------------------
Deadline:
Your assignment must be uploaded/submitted on or before 30-07-2010
Triangle::Triangle(){this->height=this->base=2.5;
}
void Triangle::setF(){
cout<< "Please enter the value of the Base: ";
cin>>base;
cout << "Please enter the value of the Height: ";
cin>>height;}
I suppose you found no way to be any less specific?
One obvious mistake is that you forgot main's return type, though.
Also, edit your post and use code tags. The code is unreadable without them.