-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut58.cpp
More file actions
40 lines (35 loc) · 796 Bytes
/
tut58.cpp
File metadata and controls
40 lines (35 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include<iostream>
using namespace std;
template <class T>
class vector{
public:
T * arr;
int size;
vector(int m){
size = m;
arr = new T[size];
}
T product(vector &v){
T d = 0;
for ( int i = 0; i < size; i++)
{
d += this->arr[i] * v.arr[i];
}
return d;
}
};
int main(){
vector <float>v1(3);
v1.arr[0] = 4;
v1.arr[1] = 3;
v1.arr[2] = 2;
v1.arr[3] = 1;
vector <float>v2(3);
v2.arr[0] = 1;
v2.arr[1] = 2;
v2.arr[2] = 1;
v2.arr[3] = 0;
float a = v1.product(v2);
cout<<a<<endl;
return 0;
}