You are on page 1of 3

Assignment No.

4 Total Marks: 20
Semester: Fall 2010
CS201: Introduction to Programming Due Date: 24th Jan, 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 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

 Classes and objects manipulation in c++


 Operators overloading

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: Price manipulation

You are required to create a class in C++ named Price with the following
Data members, Data members should be publicly declared.

• Rupees
• Paisas

The Price class presents Price in Rupees and Paisa. For instance, Price (10,
80) means 10 rupees and 80 paisas. The Price class should have the following
features as described in detailed descriptions:
Detailed Description:
Constructors

Class Price must have

• Default constructor, which must set Rupees and Paisas to zero.

• Parameterized constructor that receives two parameters of type int and


initializes its private data: Rupees and Paisas with them. Note that if
Paisas are 100 or greater than 100 then also convert it in Rupees.
Member Functions
• Create a function named Print()that displays the price of object in
terms of rupees and paisas.
Operator overloading
• A member function that overloads the + Operator to add two objects of
Price.

There should be an overloaded + operators:

• Add two objects and return Price object. Note that Paisas should not
exceed 100.
• Add first number into second objects and return Price object. Note that
paisas should not exceed 100.

Output of your program should be as follows:

Price is 10 rupees and 60 paisas

Price is 12 rupees and 80 paisas

After Addition

Price is 23 rupees and 40 paisas

Note: you have to use same Class and Function name as mentioned in the
assignment details. If we find any deviation, marks will be deducted.

Deadline:
Your Assignment solution must be submitted on or before January 24th, 2011.

Only CPP file will be accepted, file other than CPP will be awarded
zero (0) marks.

You might also like