c++/max.cpp
author Markus Bröker<broeker.markus@googlemail.com>
Sun, 10 Feb 2019 13:17:01 +0100
changeset 173 374a86886bc5
parent 165 f551b78c3eee
permissions -rw-r--r--
LAST-DIGIT-BUG: INCREMENT before LF

#include <iostream>
#include <exception>

using namespace std;

template<class T>
void maxx(T a, T b) {
    if (a > b)
        cout << b << endl;
    else
        cout << a << endl;
}

void maxx(int a, int b) {
    cout << "handle ints special..." << endl;
}

int main(int argc, char **argv)
{
    double d1=3.2, d2=5.2;

    try {
        maxx(3.5, 5.1);
        maxx(5, 1);
        maxx(d1, d2);
    } catch (exception &e) {
        cout << e.what();
    }

    return 0;
}