Greedy algorithm for Egyptian fractions: Difference between revisions

Content added Content deleted
m (Added link to Boost library page to C++ solution)
Line 201: Line 201:


=={{header|C++}}==
=={{header|C++}}==
{{libheader|Boost}}
The C++ standard library does not have a "big integer" type, so this solution uses the Boost library.
The C++ standard library does not have a "big integer" type, so this solution uses the Boost library.
<lang cpp>#include <iostream>
<lang cpp>#include <iostream>