摘要:
1 #pragma once 2 3 #include "targetver.h" 4 5 #include <stdio.h> 6 #include <tchar.h> 7 8 template <class T> 9 class CThree10 {11 public:12 CThree(T t1,T t2,T t3);13 T Min();14 T Max();15 private:16 T a,b ,c;17 }; 1 #include "stdafx.h" 2 #include <ostream> 阅读全文