摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 template 7 T max(T a, T b) 8 { 9 return a > b ? a : b;10 }11 12 13 14 int main(i... 阅读全文
posted @ 2014-09-28 20:55 tilly_chang 阅读(168) 评论(0) 推荐(0) 编辑