64.数据极限

 1 #include <iostream>
 2 #include <limits>
 3 using namespace std;
 4 
 5 void main()
 6 {
 7     cout << numeric_limits<int>::max() << endl;
 8     cout << numeric_limits<int>::min() << endl;
 9     cin.get();
10 }

 

posted @ 2018-03-14 16:18  喵小喵~  阅读(122)  评论(0编辑  收藏  举报