Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Object Oriented ProgrammingRSS Feeds

Program to illustrate the binary operator(*) overloading without creating a new object

Posted By: Easy Tutor     Category: C++ Programming     Views: 5616

A C++ Program to illustrate the binary operator(*) overloading ( without creating a new object ).

Code for Program to illustrate the binary operator(*) overloading without creating a new object in C++ Programming

 #include<iostream.h>
 #include<conio.h>


 /*************************************************************************///----------------------------  distance  -------------------------------///*************************************************************************/class distance
    {
       private:
        int feet;
        float inches;

       public:
        distance()
           {
              feet=0;
              inches=0;
           }

        distance(int f,float i)
           {
              feet=f;
              inches=i;
           }

        distance operator *(distance);
        void get_distance();

        void show_distance()
           {
              cout<<feet<<" f  - "<<inches<<"'"<<endl;
           }
     };


 /*************************************************************************///---------------------------  get_distance( )  -------------------------///*************************************************************************/void distance::get_distance()
    {
       cout<<"\t Enter the feet = ";
       cin>>feet;

       cout<<"\t Enter the inches = ";
       cin>>inches;
    }

 /*************************************************************************///---------------------------  operator*(distance)  ---------------------///*************************************************************************/

 distance distance::operator*(distance d_2)
    {
       int f=d_2.feet*feet;

       float i_1=d_2.inches*inches;
       float i_2;
       float i_3;

       i_2=i_1/12;
       i_3=i_1-(i_2*12);
       i_3=i_3+i_2;

       return distance(f,i_3);
    }

 /*************************************************************************//*************************************************************************///-----------------------------  Main( )  -------------------------------///*************************************************************************//*************************************************************************/

 main( )
    {
       clrscr();

       distance d_1;
       distance d_2(11, 6.25);
       distance d_3;
       distance d_4;

       cout<<"\n Value of d_1 : "<<endl;
       d_1.get_distance();

       d_3=d_1*d_2;
       d_4=d_1*d_2*d_3;

       cout<<"\n Value of d_1 = ";
       d_1.show_distance();

       cout<<"\n Value of d_2 = ";
       d_2.show_distance();

       cout<<"\n Value of d_3 = ";
       d_3.show_distance();

       cout<<"\n Value of d_4 = ";
       d_4.show_distance();

       getch();
       return 0;
    }
  
Share: 



Easy Tutor
Easy Tutor author of Program to illustrate the binary operator(*) overloading without creating a new object is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!