//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;
}
```

Computer Science & Information Technology

You might also like to view...

All Office programs have a ribbon that consists Tabs, Groups and ________

A) Commands B) Menus C) Actions D) Tools

Computer Science & Information Technology

All macros are created in a programming language called:

A) Rich Text Format. B) Java Script. C) Hypertext Markup Language. D) Visual Basic for Applications.

Computer Science & Information Technology