P22 (*) Create a list containing all integers within a given range.
| 179 | |
| 180 | // P22 (*) Create a list containing all integers within a given range. |
| 181 | void problem_22() |
| 182 | { |
| 183 | print_result(numbers<int>(3, 8)); |
| 184 | } |
| 185 | |
| 186 | // P23 (**) Extract a given number of randomly selected elements from a list. |
| 187 | void problem_23() |