20_1.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //20_1.cpp
  2. #include <iostream.h>
  3. #include <string.h>
  4. template<class T>
  5. T min(T& a, T& b)
  6. {
  7.   return a>b?b:a;
  8. }
  9. char* min(char* a, char* b)
  10. {
  11.   return (strcmp(a, b)>0 ? b: a);
  12. }
  13. void main()
  14. {
  15.   cout <<min("Hello", "Good") <<endl;
  16.   cout <<min(3,8) <<endl;
  17. }