Этот коммит содержится в:
victoriaCS
2025-09-06 14:40:31 +03:00
родитель 38bc82e2ae
Коммит 3917c79f91

Просмотреть файл

@@ -15,7 +15,10 @@ struct Input {
size_t bin_count{}; size_t bin_count{};
}; };
Input input_data(istream& in) { Input input_data(istream& in, bool prompt) {
if (prompt) {
cerr << "Enter number count, numbers and bin count: ";
}
size_t number_count; size_t number_count;
in >> number_count; in >> number_count;