| 182 | } |
| 183 | |
| 184 | void getClimateData() { |
| 185 | |
| 186 | City::GetData(); |
| 187 | |
| 188 | int array = 0; |
| 189 | for (int i = 0; i < 4; i++) { |
| 190 | for (int j = 0; j < 3; j++) { |
| 191 | cout << cityClimateDate[array] << " "; |
| 192 | array++; |
| 193 | } |
| 194 | |
| 195 | } |
| 196 | cout << "\nAverage Humidity: " << average / 12.0 << endl << endl; |
| 197 | array = 0; |
| 198 | } |
| 199 | }; |
| 200 | |
| 201 | void CityTemperatureInfo() { |
nothing calls this directly
no outgoing calls
no test coverage detected