码迷,mamicode.com
首页 > 编程语言 > 详细

C++编程基础一 04-整型

时间:2018-07-21 16:57:54      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:include   using   max   int   span   none   div   limit   mit   

 1 // 04-整型.cpp: 定义控制台应用程序的入口点。
 2 //
 3 
 4 #include "stdafx.h"
 5 #include <iostream>
 6 #include <climits>
 7 using namespace std;
 8 
 9 int main()
10 {
11     short a = 3;
12     int b = 100; //变量赋值需考虑变量范围,不能超过最大值,否则会出错。
13     long c = 900;
14     long long d = 100;
15     
16     unsigned short e = 3;//unsigned 是无符号的类型,不支持负数。有符号的位数会比无符号的多。
17 
18     cout << INT32_MAX << endl;
19     cout << INT32_MIN << endl;
20 
21     cout << SHRT_MAX << endl;
22     cout << SHRT_MIN << endl;
23 
24     short level = 8;
25 
26     int t;
27     cin >> t;
28     return 0;
29 }

 

C++编程基础一 04-整型

标签:include   using   max   int   span   none   div   limit   mit   

原文地址:https://www.cnblogs.com/uimodel/p/9346437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!