lab5/ConsoleApplication1/5_5.cpp

14 lines
168 B
C++
Raw Permalink Normal View History

2022-04-26 13:07:36 +00:00
#include <iostream>
#include <string>
using namespace std;
template<class T>
T maxx(T a, T b) {
return a > b ? a : b;
}
int main() {
cout << maxx("bdc", "bcd");
}