第二个C++程序,认识各种数据格式

#include
#include
int main()
{
	using namespace std;
	int n_int=INT_MAX;
	short n_short=SHRT_MAX;
	long n_long=LONG_MAX;
	long long n_llong=LLONG_MAX;
	
	cout <<"int is "<

你可能感兴趣的:(第二个C++程序,认识各种数据格式)