Help with my program I need to use the following requirements the programming is using C ++ and the following conditions: (0) add 'public', 'private', 'friend' separate into .h and .cpp files "Vec.cpp" "Vec.h" "main.cpp" (1) Vec operator+(Vec a, Vec b) [4,6,8] + [9,8,6] = [13,14,14] (2) operator* 1) Vec operator*(Vec a, int n) [1,2,3] * 4 = [4,8,12] 2) Vec operator*(int n, Vec a) 4 * [1,2,3] = [4,8,12] 3) int operator*(Vec a, Vec b) (check dot product) [1,2,3] * [2,3,4] = 1*2+2*3+3*4 = 20    (3) operator[] (cout << v.at(3);) cout << v[3] << endl; (4) operator<,>,<=,>=,==,!= [1,2,3] == [1,2,3] [1,2,3] < [1,2,3,5] < [1,2,4] < [1,2,6] < [1,3] < hallo < hell < hello < hf e.g. bool operator<(Vec a, Vec b) { ... } (5) ostream& operator<<(...) cout << v << endl; output: [ 3, 1, 4, 2 ] I have done the following so far but I have problems with multiplication and with the following steps #include using namespace std; class Vec{ private: int x; int z; int y; public: Vec() { x=0; z=0; y=0; } Vec (int a, int b, int c) { x=a; z=b; y=c; } void printVec() { cout<<"["<

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section: Chapter Questions
Problem 5PP: (Data processing) Write a C++ program that reads the file created in Exercise 4, permits the user to...
icon
Related questions
Question

Help with my program I need to use the following requirements the programming is using C ++ and the following conditions:

(0) add 'public', 'private', 'friend'
separate into .h and .cpp files
"Vec.cpp" "Vec.h" "main.cpp"
(1) Vec operator+(Vec a, Vec b)
[4,6,8] + [9,8,6] = [13,14,14]
(2) operator*
1) Vec operator*(Vec a, int n)
[1,2,3] * 4 = [4,8,12]
2) Vec operator*(int n, Vec a)
4 * [1,2,3] = [4,8,12]
3) int operator*(Vec a, Vec b) (check dot product)
[1,2,3] * [2,3,4] = 1*2+2*3+3*4 = 20   
(3) operator[] (cout << v.at(3);)
cout << v[3] << endl;
(4) operator<,>,<=,>=,==,!=
[1,2,3] == [1,2,3]
[1,2,3] < [1,2,3,5] < [1,2,4] < [1,2,6] < [1,3]
< hallo < hell < hello < hf
e.g. bool operator<(Vec a, Vec b) { ... }
(5) ostream& operator<<(...)
cout << v << endl; output: [ 3, 1, 4, 2 ]

I have done the following so far but I have problems with multiplication and with the following steps

#include <iostream>

using namespace std;

class Vec{

private:

int x;

int z;

int y;

public:

Vec()

{

x=0;

z=0;

y=0;

}

Vec (int a, int b, int c)

{

x=a;

z=b;

y=c;

}

void printVec()

{

cout<<"["<<x<<","<<z<<","<<y<<"]"<<endl;

}

Vec operator +(Vec &op2);

Vec operator *(Vec &op2);

};

Vec Vec::operator+(Vec &op2)

{

op2.x= x + op2.x;

op2.z= z + op2.z;

op2.y= y+ op2.y;

return op2;

}

Vec Vec::operator*(Vec &op2)

{

op2.x= x *4;

return op2;

}

int main() {

Vec obj1(4,6,8),obj2(9,8,6), obj3, obj4;

obj3= obj1+obj2;

obj3.printVec();

obj4.printVec();

return 0;

}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr