Details
Write a Vector class with the following methods:
- Vector(float x, float y, float z) - Creates a new vector with the specified values. 
- Vector subtract(Vector vector) - Returns a new vector that is this vector minus the specified vector. 
- static float dot(Vector vector, Vector vector) - Returns the dot product of the two specified vectors. 
- static Vector cross(Vector vector1, Vector vector2) - Returns the cross product of the two specified vectors. 
Submission
Please show your source code and run your program for the instructor.