double highestTempOfYear(Mweather data[12]){
vector<double> temps;
for(int i = 0; i < 12; i++){
temps.push_back(data[i].high_temperature);
temps.push_back(data[i].low_temperature);
}
return *max_element(temps.begin(),temps.end());
}
double lowestTempOfYear(MWeather data[12]){
vector<double> temps;
for(int i = 0; i < 12; i++){
temps.push_back(data[i].high_temperature);
temps.push_back(data[i].low_temperature);
}
在函数头的行上,double lowestTempOfYear(MWeather data[12])
,
“错误:预期 ',' 或 ';' 在“{”标记之前”