runxinzhi.com
首页
百度搜索
浮点数转换成二进制的方法
using
namespace std;
int main(){
int i;
float f=-6.9072;
//将float指针转换为字符指针
unsigned
char* p=
reinterpret_cast<unsigned
char*>(&f);
cout<<hex;
//print bytes of f in hex
for(i=0; i<
sizeof(
float);i++)
cout<<
static_cast<
int>(p[i])<<endl;
}</span>
相关阅读:
centos7安装gitlab并汉化
Centos7系统安装yum遇到的问题failure: repodata/repomd.xml from base: [Errno 256] No more mirrors to try. http: (中断yum或者换yum源出问题)
Git 服务器搭建
set prompt = "任意匹配字符" 当前目录详解
java循环嵌套与跳转语句(break,continue)
java循环语句for与无限循环
java循环语句while与do-while
java流程控制语句if
java引用数据类型之Scanner与Random
java运算符二
原文地址:https://www.cnblogs.com/gaoxianzhi/p/6683614.html
最新文章
GIL 线程全局锁
Python 中的作用域
Python单例模式
Python装饰器
字符串格式化:%和.format
tensorRT 使用过程中的Bug记录
firefox 组件推荐
C++ (tensorRT中学习)
TensorRT Development document (C++)
PCA原理(二)
热门文章
PCA原理(一)
python函数 参数传递
卷积核分布分析
matplot画图详解
Windows命令行使用
php魔术方法
堆和栈的区别和联系
Nginx+Php-fpm运行原理详解
PHP底层的运行机制与原理
gitlab占用内存太多
Copyright © 2020-2023
润新知