Chinaunix首页 | 论坛 | 博客
  • 博客访问: 165361
  • 博文数量: 36
  • 博客积分: 648
  • 博客等级: 上士
  • 技术积分: 335
  • 用 户 组: 普通用户
  • 注册时间: 2011-08-09 15:29
文章分类

全部博文(36)

文章存档

2013年(2)

2012年(26)

2011年(8)

我的朋友

分类: C/C++

2011-08-09 15:33:09

#include

#include

using namespace std;

template

void showMinMax()

{

    cout << "min: " << numeric_limits::min() << endl;

    cout << "max: " << numeric_limits::max() << endl;

    cout << endl;

}

int main()

{

    cout << "short: " << endl;

    showMinMax();

    cout << "int: " << endl;

    showMinMax();

    cout << "long: " << endl;

    showMinMax();

    cout << "float" << endl;

    showMinMax();

    cout << "double: " << endl;

    showMinMax();

    cout << "long double: " << endl;

    showMinMax();

    cout << "unsigned short: " << endl;

    showMinMax();

    cout << "unsigned int: " << endl;

    showMinMax();

    cout << "unsigned long: " << endl;

    showMinMax();

    return 0;

}

阅读(1120) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:x86、i386、i486、i586、i686和x86_64

给主人留下些什么吧!~~