Overloading Binary Operator

  • July 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Overloading Binary Operator as PDF for free.

More details

  • Words: 87
  • Pages: 2
Overloading Binary Operator #include #include class Distance { private: int feet; float inches; public: Distance(): feet(0), inches(0.0) { } Distance(int ft, float in): feet(ft), inches(in) { } void getdist() { cout<<"\nEnter feet:"; cin>>feet; cout<<"\nEnter inches:"; cin>>inches; } void showdist() const { cout<=12.0) { i-=12.0; f++; } return Distance(f,i); } int main() {

Distance dist1,dist3,dist4; dist1.getdist(); Distance dist2(11, 6.25); dist3=dist1+dist2; dist4=dist1+dist2+dist3; cout<<"dist1=";dist1.showdist(); cout<<endl; cout<<"dist2=";dist2.showdist(); cout<<endl; cout<<"dist3=";dist3.showdist(); cout<<endl; cout<<"dist4=";dist4.showdist(); cout<<endl; getch(); } -------------------------------------------------

Related Documents

C++ Operator Overloading
April 2020 13
Binary
May 2020 19
Operator
May 2020 27
Method Overloading
November 2019 9