MAIN 'driver to declare and manipulate a vector object'
What will be an ideal response?
```
{
Vect vectA, vectB;
cout << "Describe a 'vect' by entering Magnitude and Degrees and Minutes"
<< endl << "=>; ";
cin >> vectA;
cout << "Describe a 'vect' by entering Magnitude and Degrees and Minutes"
<< endl << "=> ";
cin >> vectB;
cout << "VectorA...";
cout << vectA;
cout << "VectorB...";
cout << vectB << endl;
cout << "VectorA + VectorB...";
cout << vectA + vectB;
cout << "VectorA += VectorA...";
vectA += vectA;
cout << vectA;
cout << endl;
return 0;
}
```
You might also like to view...
Match the following SmartArt categories with their description:
I. Lists II. Process III. Cycle IV. Hierarchy V. Matrix A. Shows how parts relate to the whole B. Shows information that is not sequential C. Shows organizational structure or decision tree D. Shows steps that repeat continuously E. Shows steps in a workflow
Perform the following task for an array called fraction:
Declare constant ArraySize initialized to 10.