标签:cout 初始化 16进制 小数 进制 int clu end 题目
用16进制来表示 最大最小数字
作用是在初始化一些数据 比如矩阵或者是数列等结构的时候 让里面的初始值变成一个题目中不可能达到的数字 方便后面的操作的普遍性
#include<iostream>
using namespace std;
int main() {
int a =0x3f3f3f3f;
int b =0xc0c0c0c0;
int c = 0x3f;
int d = 0xc0;
cout << a << endl;
cout << b << endl;
cout << c << endl;
cout << d<< endl;
}
1061109567
-1061109568
63
192
用0x3f3f3f3f表示无穷大,0xc0c0c0c0表示无穷小
标签:cout 初始化 16进制 小数 进制 int clu end 题目
原文地址:https://www.cnblogs.com/luolinjin/p/12765255.html