| 210 | } |
| 211 | |
| 212 | void printNumbers(const std::string& label, const unsigned(&numbers)[5]) |
| 213 | { |
| 214 | std::cout << label << ": "; |
| 215 | |
| 216 | for (const auto number : numbers) |
| 217 | { |
| 218 | if (number != NOT_AVAILABLE) |
| 219 | std::cout << number << ' '; |
| 220 | } |
| 221 | |
| 222 | std::cout << std::endl; |
| 223 | } |