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