Сравнить коммиты

..

Ничего общего в коммитах. '960722ab482622c0839ac4e768b27c93e92d8e73' и 'a5aeaa0976b1747b0111e0b236b603190dd4b87b' имеют совершенно разные истории.

3
.gitignore поставляемый

@ -1,3 +1,2 @@
/bin /bin
/obj /obj
/curl

@ -36,12 +36,7 @@
<Compiler> <Compiler>
<Add option="-Wall" /> <Add option="-Wall" />
<Add option="-fexceptions" /> <Add option="-fexceptions" />
<Add directory="D:/Projects_Code_Blocks/2_halfYear/Lab4/Lab1/curl/include" />
</Compiler> </Compiler>
<Linker>
<Add library="curl/lib/libcurl.dll.a" />
<Add directory="D:/Projects_Code_Blocks/2_halfYear/Lab4/Lab1/curl/lib" />
</Linker>
<Unit filename="histogram.cpp"> <Unit filename="histogram.cpp">
<Option target="Debug" /> <Option target="Debug" />
</Unit> </Unit>
@ -52,6 +47,8 @@
<Option target="&lt;{~None~}&gt;" /> <Option target="&lt;{~None~}&gt;" />
</Unit> </Unit>
<Unit filename="main.cpp" /> <Unit filename="main.cpp" />
<Unit filename="prot.cpp" />
<Unit filename="prot.h" />
<Unit filename="svg.cpp" /> <Unit filename="svg.cpp" />
<Unit filename="svg.h" /> <Unit filename="svg.h" />
<Unit filename="text.cpp"> <Unit filename="text.cpp">

@ -1,12 +1,10 @@
#include <curl/curl.h>
using namespace std; using namespace std;
#include "histogram.h" #include "histogram.h"
#include "text.h" #include "text.h"
#include "svg.h" #include "svg.h"
//313
struct Input { struct Input {
std::vector<double> numbers; std::vector<double> numbers;
size_t bin_count{}; size_t bin_count{};
@ -16,9 +14,8 @@ Input input_data(istream& in, bool promt);
int main() int main()
{ {
curl_global_init(CURL_GLOBAL_ALL);
Input in = input_data(cin,true); Input in = input_data(cin);
std::vector<size_t> bins = make_histogram(in.numbers, in.bin_count); std::vector<size_t> bins = make_histogram(in.numbers, in.bin_count);
show_histogram_svg(bins); show_histogram_svg(bins);

Загрузка…
Отмена
Сохранить