#include
using namespace std;
int main()
{
int intType;
float floatType;
double doubleType;
char charType;
unsigned char ucharType;
short shortType;
unsigned short ushortType;
long longType;
unsigned long ulongType;
bool boolType;
cout<<"int暂用内存空间的大小:"<
return 0;
}