MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / getClimateData

Method getClimateData

Lab_21/city_temperature_control.cpp:184–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
201void CityTemperatureInfo() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected