Can someone explain to me why this shows up as
Foothill (user input) : -9.222255e+061
----------------------------------------------------
DeAnza (user input) : -9.222255e+061
----------------------------------------------------
SJSU (user input) : -9.222255e+061
----------------------------------------------------
: 10
----------------------------------------------------
: 20 //my input
----------------------------------------------------
: 30
----------------------------------------------------
void VectorList::DailyReport()
{
cout << "==========NGS Daily Temperature Report==========" << endl;
cout << "================================================" << endl;
cout << "------------------------------------------------" << endl;
for(int K=0, size=List.size() ; K<List.size(); K++) {
cout << List[K].GetDesignation() << " : " << List[K].GetTemperature() << endl;
cout << "------------------------------------------------" << endl;
}
}