Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • pytorch-2.0
2 results

rpe_mha.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);
    }