评论

收藏

[C++] c++基本数据类型

编程语言 编程语言 发布于:2021-07-13 20:37 | 阅读数:237 | 评论:0

#include<iostream>
#include<climits>
using namespace std;
//c plus plus
/*
内置整型
unsigned long ,long,unsigned int,int,unsigned short,short,char,unsigned char,signed char,bool
cpp 11新增整型
unsigned long long,long long
内置浮点类型:
float ,double, long double
*/
int main(void) {
cout << sizeof(int)<<"\n";
const int number = 123;
cout << number << endl;
cout << ULLONG_MAX << endl;
return 0;
}
  
关注下面的标签,发现更多相似文章