#include #include #include "Vector3.h" using namespace std; int main() { Vector3 a(1.0, 0.0, 20.50); Vector3 b(5.0, 1.0, 0.0); cout << "Vector A: "; a.display(); cout << "\n"; cout << "Vector B: "; b.display(); cout << "\n"; double dot = dotProduct(a, b); cout << "Dot Product: " << dot << "\n"; Vector3 cross = crossProduct(a, b); cout << "Cross Product: "; cross.display(); cout << "\n"; return EXIT_SUCCESS; }