Assignment No. 4 Semester: Fall 2010 CS201: Introduction to Programming | Total Marks: 20 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.
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
Member Functions
Operator overloading
There should be an overloaded + operators:
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.
SOLUTION
IDEA NOT 100% SURE
#include <conio.h>
class price{ //Decelaration Class name is Price
private:
int rupies;
int paisas;
//Public function Declaring
public:
price(); //Default constructor
price (int,int); //Overloaded constructor
void Print(); //print function for display the array content
price operator+(price); //Operator overloading function for operator +
};
// Default constructor
price::price()
{
rupies = 0;
paisas = 0;
}
// Overload constructor
price::price(int crupies, int cpaisas)
{
rupies = crupies;
paisas = cpaisas;
}
//Function to display the content
void price::Print()
{
cout<<" Price is "<<rupies<<" Rupees and "<<paisas<<" Paisas "<< endl;
}
// Function for operator overloading
price price::operator+(price d2)
{
int r = rupies + d2.rupies; //adding rupeies
int p = paisas + d2.paisas; //adding paisas
if (p>=100) //If paisas exceeds from 100 then adding
{
p-=100; // then into rupies
r++;
}
return price (r,p);
}
main()
{
price result;
price obj1(10, 60);
price obj2 (12, 80);
result = obj1+obj2;
obj1.Print();
cout<<"\n";
obj2.Print();
cout<<"\n";
cout<<"After Addition\n\n";
result.Print();
getch();
}
No comments:
Post a Comment