注册 登录
编程论坛 Delphi论坛

浮点数转换成字符串

lsjz517 发布于 2006-12-19 21:46, 2469 次点击

相将一浮点数(如3.146)保留两位小数并赋值给EDIT。TEXT
用edit.text:=floattostr('0.00',3.146)提示出错,是否要在程序前声明什么?请教各位老大!如声明该如何写,最好有好心人贴出完整程序.谢谢

3 回复
#2
菜鸟上路2006-12-19 22:07
Edit1.Text := FloatToStr(3.146);
#3
volte2006-12-20 08:42

你想用的是FormatFloat('0.00', 3.146)

#4
RDHHB2006-12-23 19:39

edit.text:=floattostr('0.00',3.146)
括号中的数据必须是浮点值,你的''就是字符串,肯定不通过的

VAR
aaa : single;
begin
aaa := 3.146;
edit.text:=floattostr(aaa);
end;

1