找传奇、传世资源到传世资源站!

非标浮点数转换计算

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】

【相关图片】

非标浮点数转换计算 Pascal编程基础-第1张

【源码结构】   a:=strtofloat(str1);
   b:=ceil(ln(a)/ln(2));
   Memo1.Clear;
   Memo1.Lines.Insert(0,'b= ' floattostr(b));
   c:=power(2,b);
   Memo1.Lines.Insert(1,'c= ' floattostr(c));
   d:=a/c;
   Memo1.Lines.Insert(2,'d= ' floattostr(d));
   e:=d*256;
   a_z:=trunc(e);
   a_y:=frac(e);
   Memo1.Lines.Insert(3,'e= ' floattostr(e));
   Memo1.Lines.Insert(4,'取整= ' inttostr(a_z));
   Memo1.Lines.Insert(5,'取余= ' floattostr(a_y));
   f:=a_y*256;
   b_z:=trunc(f);
   b_y:=frac(f);
   Memo1.Lines.Insert(6,'f= ' floattostr(f));
   Memo1.Lines.Insert(7,'取整= ' inttostr(b_z));
   Memo1.Lines.Insert(8,'取余= ' floattostr(b_y));
   g:=b_y*256;
   c_z:=trunc(g);
   c_y:=frac(g);
   Memo1.Lines.Insert(9,'g= ' floattostr(g));
   Memo1.Lines.Insert(10,'取整= ' inttostr(c_z));
   Memo1.Lines.Insert(11,'取余= ' floattostr(c_y));
   a_str:=IntToHex(b,2) IntToHex(a_z,2) IntToHex(b_z,2) IntToHex(c_z,2);
   Edit2.Text:=IntToHex(b,2) IntToHex(a_z,2) IntToHex(b_z,2) IntToHex(c_z,2);

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复