VUsolutions Transferred to AchiKhasi.com

From December 2011, this blog www.VUsolutions.blogspot.com is transferred to http://achikhasi.com/vu/ . So, you may visit http://achikhasi.com/vu/ for latest study related help.

Back to home VUsolutions

VUsolutions Fans Club [join us for MORE solutions]

VUsolutions on Facebook

CS201 Assignment No. 3 solution

Friday, June 10, 2011 Posted In Edit This
Assignment No. 3
Semester: Spring 2011
CS201: Introduction to Programming

Total Marks: 20
Due Date:13 June, 2011


Instructions:
Please read the following instructions carefully before submitting your assignment:
It should be clear that your assignment will not get any credit if:

§  The assignment is submitted after due date.
§  The submitted assignment does not open or file is corrupt.

All types of plagiarism are strictly prohibited.

Note: You have to upload only .cpp file. Assignment in any other format (extension) will not be accepted. If you will submit code in any other file format like .doc or .txt etc. you will get zero marks.

Objective
The objective of this assignment is to provide hands on experience of using

§  Macros in C/C++
§  Classes in C/C++
§  Creating Default constructors and User-defined constructors
§  Creating and manipulating objects.

Guidelines
§  Code should be properly aligned and well commented.
§  Follow C/C++ rules while writing variables names, function names etc.
§  Use only Dev-C++ IDE for this assignment.


Assignment:


Problem Statement: Circle Area & Circumference Calculation

You are required to write a program which will calculate the area and circumference of the circle by declaring a class. You must declare a class named Circle whose only data member will be radius which should be declared as public. You need to define a macro for the value of PI which will be used while calculating the area of the circle.


Detailed Description:

  • Data member radius should be of type double and it should be declared under public scope.

  • Value for PI should be defined using #define macro.

  • Your class should have two type of constructors:

1. Default Constructor which should initialize radius of the circle with value 0.

2. User Defined Constructor which takes class data member radius as its parameter.

  • Declare a public member function named CalculateArea() which calculates the area of the circle. The formula for calculating the area is.

  • Declare a public member function named CalculateCircum() which calculates the circumference of the circle. The formula for calculating the circumference is.

  • Declare a public member function named Display which will display the calculated area and circumference of the circle on the output screen.

  • In the main() function, declare two objects of type Circle:
          > One using default constructor
          > Second using user-defined constructor. 



It should be Display the area and circumference of the circle on the screen like the sample output.


Sample Output:

Radius of the Circle = 0
Area of the Circle = 0
Circumference of the Circle is = 0


Radius of the Circle = 3.5
Area of the Circle = 38.465
Circumference of the Circle is = 21.98

Deadline:

Your Assignment solution must be submitted on or before June 13, 2011. You have to upload only .cpp file. Assignment in any other format (extension) will not be accepted. Assignment submitted in any other file format like .doc or .txt etc. you will get zero marks.


::::::::::::::::::::::::::::::::::::::::::::
Solution:



#include<iostream.h>
#define PI 3.14
class Circle
{
public:
double radius;
Circle();
Circle(double);
double calculateArea(double);
double calculateCircum(double);
void display();
};
Circle::Circle()
{
radius = 0;
}
Circle::Circle(double r)
{
radius = r;
}
double Circle::calculateArea(double r)
{
return (PI*r*r);
}
double Circle::calculateCircum(double r)
{
return (2*PI*r);
}
void Circle::display()
{
cout << "Radius of the Circle is " << Circle::radius << endl;
cout << "Area of the Circle is " << calculateArea(Circle::radius) << endl;
cout << "Circumference of the Circle is " << calculateCircum(Circle::radius) << endl
<< endl;
}
main()
{
Circle circle1;
Circle circle2(3.5);


circle1.display();
circle2.display();
system("pause");
}

Back to home VUsolutions

Shaadi.com: Just create ur account & find ur partner or EARN money, its reall & EASY

VUsolutions Followers (Join NOW and Get Extra Benefits)

Install LATEST toolbar having lot of features - GET solutions on Desktop

toolbar powered by Conduit
Caliplus 300x250 NoFlam VitoLiv 468x60 GlucoLo