extract from input source the two components of a Vector object istream& operator>>( istream& is, Vect& avect )

What will be an ideal response?

```
{
double degrees;
double minutes;
double radians;
is >> avect.r >> degrees >> minutes;
radians = (degrees + minutes/60) * 2 * Pi / 360;
while( radians >= 2*Pi )
radians -= 2*Pi;
avect.theta = radians;
return is;
}
```

Computer Science & Information Technology

You might also like to view...

You would place a chart on its own ________ if you planned to print it out separately or if the chart has a lot of detail

Fill in the blank(s) with correct word

Computer Science & Information Technology

To increase the size of a chart, point to an edge of the chart until the double-header pointer displays and drag the ________ to the size desired

A) resize handles B) fill handle C) sizing bar D) sizing handles

Computer Science & Information Technology