摘要: C#,vs.net.j#,vbscript都是采用的四舍六入五成双 SQL server 使用的是四舍五入double aa = 1.25;aa = Math.Round(aa,1);Response.Write(aa.ToString());返回的是1.2SQL 中 select round(1.25,1) 返回的是1.3 阅读全文
posted @ 2004-08-18 11:26 Vincent 阅读(2066) 评论(2) 推荐(0)