Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
That is too hard but u got that cuz i believe in you!!!
Yes, they have to make certain sacrifices ! for many many benefits.
Answer:
The volume up to cylindrical portion is approx 32355 liters.
Explanation:
The tank is shown in the attached figure below
The volume of the whole tank is is sum of the following volumes
1) Hemisphere top
Volume of hemispherical top of radius 'r' is

2) Cylindrical Middle section
Volume of cylindrical middle portion of radius 'r' and height 'h'

3) Conical bottom
Volume of conical bottom of radius'r' and angle
is

Applying the given values we obtain the volume of the container up to cylinder is
Hence the capacity in liters is 