Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Homework HelpRSS Feeds

Program that takes input of vector elements and performs multiplication operation, and input/output (>>, <<) using operator overloading

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

Write a program of vector that performs below operations using overloading operators that are friend of vector class.

1) Take input of vector elements by overloading >> operator
2) Display vector elements by overloading << operator
3) Perform multiplication operation with digit 2 by overloading * operator

Code for Program that takes input of vector elements and performs multiplication operation, and input/output (&gt;&gt;, &lt;&lt;) using operator overloading in C++ Programming

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

const size = 3;

class vector
{
  int v[size];
  public:
    vector();
    vector (int *x);
    friend vector operator * (int a,vector b);
    friend vector operator * (vector b,int a);
    friend istream & operator >> (istream &,vector &);
    friend ostream & operator << (ostream &,vector &);
};

vector :: vector()
{
  for(int i=0;i<size;i++)
     v[i]=0;
}

vector :: vector(int *x)
{
  for(int i=0;i<size;i++)
     v[i]=x[i];
}

vector operator * (int a,vector b)
{
 vector c;
  for(int i=0;i<size;i++)
   c.v[i]=a * b.v[i];
 return(c);
}

vector operator * (vector b,int a)
{
  vector c;
  for(int i=0;i<size;i++)
    c.v[i]=b.v[i] * a;
  return(c);
}

istream & operator >> (istream & din,vector & b)
{
  for(int i=0;i<size;i++)
   din>>b.v[i];
   return(din);
}

ostream & operator << (ostream & dout,vector & b)
{
   dout<<"(";//<<b.v[0];for(int i=0;i<size;i++)
   {
    dout<<b.v[i]
    if(i+1 <> size)
    {
    dout<<",";
    }
    dout<<")";
   }
   return(dout);
}

int x[size] = {2,4,6};

void main()
{
clrscr();
vector m;
vector n=x;

cout<<"Enter elements of vector m \n";
cin>>m;
cout<<endl;
cout<<"m="<<m<<endl;

vector p,q;
p=2*m;
q=n*2;

cout<<endl;
cout<<"p="<<p<<endl;
cout<<"q="<<q<<endl;
getch();
}
  
Share: 



Easy Tutor
Easy Tutor author of Program that takes input of vector elements and performs multiplication operation, and input/output (>>, <<) using operator overloading 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!