Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Позначте всі коректні виклики для шаблону:
template<typename T>T Min(T a, T b) { return (a < b) ? a : b; }
template<typename T>
T Min(T a, T b) { return (a < b) ? a : b; }
Min(2.5, 1.0)
Min(3, 5)
Min<int>(7, 4)
Min(3, 2.5)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!