Skip to content
Snippets Groups Projects
Select Git revision
  • only-docker-restart
  • master default protected
  • noroot
  • differentauth
  • encrypted-secrets
  • secrets-backend
  • singlevolume
  • mptest
  • stable-0.34 protected
  • stable-0.33 protected
  • 0.33
  • stable-0.32 protected
  • stable-0.31 protected
  • stable-0.30 protected
  • stable-0.29 protected
  • stable-0.28 protected
  • stable-0.27 protected
  • stable-0.26 protected
  • stable-0.25 protected
  • stable-0.24 protected
  • stable-0.23 protected
  • stable-0.22 protected
  • stable-0.21 protected
  • stable-0.20 protected
  • stable-0.19-test-04 protected
  • stable-0.19-test-03 protected
  • stable-0.19-test-02 protected
  • stable-0.19-test-01 protected
28 results

userdb-cli.py

Blame
  • min_of_three.cc 339 B
    // examples/min_of_three.cc
    #include <iostream>
    
    auto min_of_three(int a, int b, int c) -> int
    {
        // recipe needed!
        return a;
    }
    auto main() -> int
    {
        int i = 0, j = 0, k = 0;
        std::cout << "Enter i, j and k: ";
        std::cin >> i >> j >> k;
        std::cout << "The smallest of the three is " << min_of_three(i, j, k) << "\n";
    }