Display a fuel tank with labels
What will be an ideal response?
```
ostream& operator<< (ostream& os, const Tank& tank)
{
os << "Capacity: " << tank.getCapacity() << " gallons, currently at: "
<< tank.getCurrent() << " gallons.";
return os;
}
```
Computer Science & Information Technology
You might also like to view...
Bike shares in major cities in which you use a smart phone to rent a bike are examples of ________
Fill in the blank(s) with correct word
Computer Science & Information Technology
Similar to ________, the navigation form allows for top-level navigation commands across the top of the page or vertical navigation along the side of the page as well as subnavigation directly below or along the side of the page
Fill in the blank(s) with correct word
Computer Science & Information Technology