#include #include #include #include "curl/curl.h" #include "histogram.h" #include "svg.h" using namespace std; struct Input { vector numbers; size_t bin_count{}; }; Input input_data(istream& in, bool prompt) { size_t number_count; if (prompt) { cerr << "Number count: "; } in >> number_count; Input input; input.numbers.resize(number_count); if (prompt) { cerr << "Numbers: "; } for (size_t i = 0; i < number_count; i++) { in >> input.numbers[i]; } if (prompt) { cerr << "Enter bin count: "; } in >> input.bin_count; return input; } int main(int argc, char* argv[]) { // ТЕСТ cURL - этот код должен выполняться ПЕРВЫМ cout << "Тестируем cURL..." << endl; CURL* curl = curl_easy_init(); if(curl) { cout << "cURL работает!" << endl; curl_easy_cleanup(curl); } else { cout << "cURL не инициализируется!" << endl; } Input input; if (argc > 1) { cerr << "URL получен: " << argv[1] << " (cURL тестируется)" << endl; return 0; } else { input = input_data(cin, true); } auto bins = make_histogram(input.numbers, input.bin_count); show_histogram_svg(bins); return 0; }