bool prompt
Этот коммит содержится в:
26
main.cpp
26
main.cpp
@@ -8,21 +8,29 @@ struct Input {
|
||||
size_t bin_count{};
|
||||
};
|
||||
|
||||
Input input_data(std::istream& in) {
|
||||
Input input_data(std::istream& in, bool prompt)
|
||||
{
|
||||
Input data;
|
||||
size_t number_count;
|
||||
|
||||
cerr << "Enter the number of elements: ";
|
||||
if(prompt)
|
||||
{
|
||||
cerr << "Enter the number of elements: ";
|
||||
}
|
||||
in >> number_count;
|
||||
|
||||
data.numbers.resize(number_count);
|
||||
|
||||
cerr << "\nEnter " << number_count << " elements:" << endl;
|
||||
for (size_t i = 0; i < number_count; i++) {
|
||||
if(prompt)
|
||||
{
|
||||
cerr << "\nEnter " << number_count << " elements:" << endl;
|
||||
}
|
||||
for (size_t i = 0; i < number_count; i++)
|
||||
{
|
||||
in >> data.numbers[i];
|
||||
}
|
||||
|
||||
cerr << "Enter the number of bins: ";
|
||||
if(prompt)
|
||||
{
|
||||
cerr << "Enter the number of bins: ";
|
||||
}
|
||||
in >> data.bin_count;
|
||||
|
||||
return data;
|
||||
@@ -30,7 +38,7 @@ Input input_data(std::istream& in) {
|
||||
|
||||
int main() {
|
||||
using namespace std;
|
||||
auto in = input_data(cin);
|
||||
auto in = input_data(cin,true);
|
||||
auto bins = make_histogram(in.bin_count, in.numbers);
|
||||
show_histogram_svg(bins);
|
||||
return 0;
|
||||
|
||||
Ссылка в новой задаче
Block a user