Skip to content
Snippets Groups Projects
Select Git revision
  • 456e3c270916d7a1d64f615498f65f5f1e7cd191
  • master default protected
  • tf2
  • tf2_pytorch
  • issue_3
  • issue_2
  • 2019a
  • juwels_2019a
  • jureca_2019_a
9 results

data_utils.py

Blame
  • fibonacci.cc 418 B
    #include <iostream>
    #include <limits>
    #include <format>
    
    auto main() -> int
    {
        using namespace std;
        size_t umax{ numeric_limits<size_t>::max() };
        unsigned nfib = 0;
        size_t f0{ 0 }, f1{ 1 };
        // Insert your code here
    
        cout << format(R"(The largest number in the Fibonacci sequence under {0:} is {1:},
    and there are {2:} entries under {0:} in that sequence.
    )"                 , umax, f1, nfib);
    }