Tank constructor with initialization
What will be an ideal response?
```
Tank :: Tank(double full, double startLevel)
{
capacity = full;
current = startLevel;
}
```
Computer Science & Information Technology
You might also like to view...
The terms virus and worm actually mean the same thing
Indicate whether the statement is true or false
Computer Science & Information Technology
Write a method that accepts an array of integers as a parameter and sorts them using the selection sort algorithm.
What will be an ideal response?
Computer Science & Information Technology