• 大小: 1.99KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-02-01
  • 语言: C/C++
  • 标签:

资源简介


资源截图

代码片段和文件信息

#include
#include 
using namespace std;

int main()
{
    cout << “type: \t\t“ << “------------------size-----------------------“<< endl;
    cout << “bool: \t\t“ << “Bytes:“ << sizeof(bool);
    cout << “\tMaxValue:“ << (numeric_limits::max)();
    cout << “\t\tMinValue:“ << (numeric_limits::min)() << endl;
    cout << “char: \t\t“ << “Bytes:“ << sizeof(char);
    cout << “\tMaxValue:“ << (numeric_limits::max)();
    cout << “\t\tMinValue:“ << (numeric_limits::min)() << endl;
    cout << “signed char: \t“ << “Bytes:“ << sizeof(signed char);
    cout << “\tMaxValue:“ << (numeric_limits::max)();
    cout << “\t\tMinValue:“ << (numeric_limits::min)() << endl;
    cout << “unsigned char: \t“ << “Bytes:“ << siz

评论

共有 条评论