PDA

View Full Version : cs201 assignment no 3 idea solution spring June 2011



Vuhelper
06-06-2011, 11:52 PM
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:

o One using default constructor
o 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.

shafiq856
06-07-2011, 09:07 PM
CS201 Assignment 3 Spring 2011

#include <iostream>
#include <cmath>
#include <iomanip>

using namespace std;

int main()
{
float radius;
float fAreaCircle;
float fCircumferenceCircle;

cout << "\nEnter the radius of circle: " ;
cin >> radius;

cout << "\nThe radius of circle is: " << radius << endl;

fAreaCircle = (M_PI * radius) * radius;
fCircumferenceCircle = (2.0 * M_PI) * radius;

cout << "The area of the circle is: " << fAreaCircle << endl;
cout << "The circumference of the circle is: " << fCircumferenceCircle << endl;

system("Pause");
return 0;
}

Vuhelper
06-07-2011, 11:02 PM
thanks for sharing

shafiq856
06-08-2011, 03:12 PM
Another Idea Solution CS201 Assignment 3 Spring 2011


#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
#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");
}
3040

Xpert
06-13-2011, 03:26 PM
it will dear.

Xpert
06-15-2011, 04:35 AM
dont you know?