Загрузка файла по сети
Этот коммит содержится в:
36
main.cpp
36
main.cpp
@@ -5,31 +5,37 @@
|
||||
#include "text.h"
|
||||
#include "svg.h"
|
||||
|
||||
struct Input {
|
||||
struct Input
|
||||
{
|
||||
std::vector<double> numbers;
|
||||
size_t bin_count{};
|
||||
};
|
||||
|
||||
Input input_data(std::istream& in, bool prompt) {
|
||||
Input input_data(std::istream& in, bool prompt)
|
||||
{
|
||||
Input data;
|
||||
size_t number_count;
|
||||
|
||||
if(prompt){
|
||||
cerr << "Enter the number of elements: ";
|
||||
if(prompt)
|
||||
{
|
||||
cerr << "Enter the number of elements: ";
|
||||
}
|
||||
|
||||
in >> number_count;
|
||||
data.numbers.resize(number_count);
|
||||
|
||||
if(prompt){
|
||||
cerr << "\nEnter " << number_count << " elements:" << endl;
|
||||
if(prompt)
|
||||
{
|
||||
cerr << "\nEnter " << number_count << " elements:" << endl;
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < number_count; i++) {
|
||||
for (size_t i = 0; i < number_count; i++)
|
||||
{
|
||||
in >> data.numbers[i];
|
||||
}
|
||||
if(prompt){
|
||||
cerr << "Enter the number of bins: ";
|
||||
if(prompt)
|
||||
{
|
||||
cerr << "Enter the number of bins: ";
|
||||
}
|
||||
|
||||
in >> data.bin_count;
|
||||
@@ -44,12 +50,16 @@ int main(int argc, char* argv[])
|
||||
|
||||
if (argc > 1)
|
||||
{
|
||||
cout << "argc = " << argc << endl;
|
||||
for (int i = 0; i < argc; ++i)
|
||||
const char *url = argv[1];
|
||||
|
||||
CURL *curl = curl_easy_init();
|
||||
if (curl)
|
||||
{
|
||||
cout << "argv[" << i << "] = " << argv[i] << endl;
|
||||
curl_easy_setopt(curl, CURLOPT_URL, url);
|
||||
curl_easy_perform(curl);
|
||||
curl_easy_cleanup(curl);
|
||||
return 0;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
auto in = input_data(cin,true);
|
||||
|
||||
Ссылка в новой задаче
Block a user