code: add checker of mistakes
Этот коммит содержится в:
75
l03.cpp
75
l03.cpp
@@ -4,17 +4,15 @@
|
|||||||
#include "svg.h"
|
#include "svg.h"
|
||||||
#include "text.h"
|
#include "text.h"
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
// const size_t SCREEN_WIDTH = 80;
|
|
||||||
// const size_t MAX_ASTERISK = SCREEN_WIDTH - 3 - 1;
|
|
||||||
|
|
||||||
struct Input
|
struct Input
|
||||||
{
|
{
|
||||||
vector<double> numbers;
|
vector<double> numbers;
|
||||||
size_t bin_count{};
|
size_t bin_count{};
|
||||||
// size_t IMAGE_WIDTH{};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Input input_data(istream &in, bool promt)
|
Input input_data(istream &in, bool promt)
|
||||||
@@ -28,21 +26,9 @@ Input input_data(istream &in, bool promt)
|
|||||||
|
|
||||||
Input input;
|
Input input;
|
||||||
|
|
||||||
// if (promt) cerr << " Input width of image, > 70 but not >800 : ";
|
|
||||||
// in >> input.IMAGE_WIDTH;
|
|
||||||
// if(input.IMAGE_WIDTH < 70 || input.IMAGE_WIDTH > 800 ) {
|
|
||||||
// while(input.IMAGE_WIDTH < 70 || input.IMAGE_WIDTH > 800) {
|
|
||||||
// if (promt) cerr << " Input width of image, >70 but not >800 : ";
|
|
||||||
// in >> input.IMAGE_WIDTH;
|
|
||||||
//}
|
|
||||||
//}
|
|
||||||
|
|
||||||
// size_t number_count = in.number_counts;
|
|
||||||
|
|
||||||
input.numbers.resize(number_count);
|
input.numbers.resize(number_count);
|
||||||
if (promt)
|
if (promt)
|
||||||
cerr << "Enter numbers: ";
|
cerr << "Enter numbers: ";
|
||||||
// vector<double> numbers(number_count);
|
|
||||||
|
|
||||||
for (size_t i = 0; i < number_count; i++)
|
for (size_t i = 0; i < number_count; i++)
|
||||||
{
|
{
|
||||||
@@ -56,45 +42,48 @@ Input input_data(istream &in, bool promt)
|
|||||||
return input;
|
return input;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
Input download(const string &address)
|
||||||
{
|
{
|
||||||
|
stringstream buffer;
|
||||||
|
|
||||||
if (argc > 1)
|
//address.c_str();
|
||||||
|
|
||||||
|
curl_global_init(CURL_GLOBAL_ALL);
|
||||||
{
|
{
|
||||||
curl_global_init(CURL_GLOBAL_ALL);
|
CURL *curl = curl_easy_init();
|
||||||
|
if (curl)
|
||||||
{
|
{
|
||||||
|
CURLcode res;
|
||||||
|
curl_easy_setopt(curl, CURLOPT_URL, address.c_str());
|
||||||
|
res = curl_easy_perform(curl);
|
||||||
CURL *curl = curl_easy_init();
|
CURL *curl = curl_easy_init();
|
||||||
if (curl)
|
if (curl)
|
||||||
{
|
{
|
||||||
CURLcode res;
|
CURLcode res;
|
||||||
curl_easy_setopt(curl, CURLOPT_URL, argv[1]);
|
/* set options */
|
||||||
|
/* Perform the entire transfer */
|
||||||
res = curl_easy_perform(curl);
|
res = curl_easy_perform(curl);
|
||||||
CURL *curl = curl_easy_init();
|
/* Check for errors */
|
||||||
if (curl)
|
if (res != CURLE_OK)
|
||||||
{
|
fprintf(stderr, "curl_easy_perform() failed: %s\n",
|
||||||
CURLcode res;
|
curl_easy_strerror(res));
|
||||||
/* set options */
|
exit(1);
|
||||||
/* Perform the entire transfer */
|
|
||||||
res = curl_easy_perform(curl);
|
|
||||||
/* Check for errors */
|
|
||||||
if (res != CURLE_OK)
|
|
||||||
fprintf(stderr, "curl_easy_perform() failed: %s\n",
|
|
||||||
curl_easy_strerror(res));
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
curl_easy_cleanup(curl);
|
|
||||||
}
|
}
|
||||||
|
curl_easy_cleanup(curl);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
auto input = input_data(cin, true);
|
return input_data(buffer, false);
|
||||||
auto bins = make_histogram(input.numbers, input.bin_count);
|
}
|
||||||
// int chek_block_width(in.IMAGE_WIDTH);
|
int
|
||||||
// chek_block_width(in.IMAGE_WIDTH, in.number_count);
|
main(int argc, char* argv[]) {
|
||||||
// if (chek_block_width==1)
|
Input input;
|
||||||
|
if (argc > 1) {
|
||||||
|
input = download(argv[1]);
|
||||||
|
} else {
|
||||||
|
input = input_data(cin, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto bins = make_histogram(input.numbers, input.bin_count);
|
||||||
show_histogram_svg(bins);
|
show_histogram_svg(bins);
|
||||||
// if(chek_block_width==0) return 0;
|
|
||||||
// show_histogram_svg(bins);
|
|
||||||
}
|
}
|
||||||
Ссылка в новой задаче
Block a user