plz expert upload the solution file of cs201
Problem Statement: Price manipulationView more random threads:
- Assignment No. 2 Fall 2012 Computer Networks – CS610
- CS304 Object Oriented Programming Assignment No.2 Fall...
- cs504 assignment no 1 spring April 2012
- CS402 Theory of Automata Assignment No.3 Fall Semester 26th...
- CS 610 Assignment 5 Sol
- MTH603 Numerical analysis assignment
- MTH601 Operations Research Assignment No. 2 Fall Semester...
- cs601 assignment no 1 idea solution fall 2011 on 28th...
- CS410 Visual Programming Assignment No.3 Solution Spring...
- IT430 E Commerce Assignment No 03 Semester 31 May Spring...
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
Sponsored Links
Urgent call: 03455242488. | Virtual University Assignments
Virtual University GDBs | Virtual University Papers | Vu Projects | Vu Handouts
About Expert
plz expert upload the solution file of cs201
Idea to solve this assignment
Code:#include <iostream.h> #include <conio.h> // This is only for IDEA, not a complete solution. class price { public: int rupees, paisas; price () {}; price (int,int); price operator + (price); }; price::price (int x1, int y1) { rupees = x1; paisas = y1; } price price::operator+ (price money) { price convert; convert.rupees = rupees + money.rupees; convert.paisas = paisas + money.paisas; return (convert); } int main () { price x1 (10,60); price y1 (13,2); price z1; z1 = x1 + y1; cout "Price is "z1.rupees " rupees " "and "z1.paisas" paisas"; getch(); return 0; }
Urgent call: 03455242488. | Virtual University Assignments
Virtual University GDBs | Virtual University Papers | Vu Projects | Vu Handouts
About Expert
Code:#include <iostream.h> #include <conio.h> using namespace std; class price{ //Declaring private data members private: int rupees; int paisas; //Declaring public functions public: price(); //Default constructor price (int,int); //Overloaded constructor void Print(); //print function for displaying the array elements price operator+(price); //Operator overloading function for operator + }; // Default constructor price::price() { rupees = 0; paisas = 0; } // Overload constructor price::price(int crupees, int cpaisas) { rupees = crupees; paisas = cpaisas; } //Function to display the elements void price::Print() { cout<<"\nPrice is "<<rupees<<" Rupees and "<<paisas<<" Paisas "<< endl; } // Function for + operator overloading price price::operator+(price d2) { int r = rupees + d2.rupees; //adding rupeees int p = paisas + d2.paisas; //adding paisas if (p>=100) //If paisas exceeds from 100 then adding a { p-=100; // them into rupees 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"; result.Print(); getch(); return 0; system("pasure"); }
oh no yeh tu smilies aa gaye is main yeh nahi chalay ga theek wait main .cpp file upload ker deta hoo woh check ker lain
dosto .cpp file attach nahi hoti is liye main nay world main code lik ker attach ker diya hai.aap yeh code Dev c++ main enter ker k .cpp file bana lain .this solution is 100 % tested
friend app zip kar kay bhi attach kar saktay han yah phir code wala tag select karo aur us kay beach main sara code paste ker do it will display
Urgent call: 03455242488. | Virtual University Assignments
Virtual University GDBs | Virtual University Papers | Vu Projects | Vu Handouts
About Expert
Assalamu Alaikum :
Respected expert the file that you uploaded (ms word formate) has no code of cs 201
dear fellow i have not uploaded any file here.
Urgent call: 03455242488. | Virtual University Assignments
Virtual University GDBs | Virtual University Papers | Vu Projects | Vu Handouts
About Expert
ASSALAMU ALAIKUM :
Respected expert plz upload the assignment solution of mgt 411 and plz help in making internship report as well as presentation. Jazakallah
There are currently 1 users browsing this thread. (0 members and 1 guests)