写一个程序,输出在你使用的C++系统中int类型的数据占几个字节,double类型的 数据占几个字节,short int占几个字节,float类型占几个字节。
作者:互联网
#include <iostream>
using namespace std;
int main() {
cout << "int:" << sizeof(int) << endl;
cout << "double:" << sizeof(double) << endl;
cout << "float:" << sizeof(float) << endl;
cout << "short int:" << sizeof(short int) << endl;
}
标签:std,short,字节,int,几个,类型 来源: https://blog.csdn.net/weixin_44190648/article/details/123187542