在asp.net中限制双精度小数点后六位

发布于 2024-08-23 17:31:26 字数 131 浏览 5 评论 0原文

我有一个双精度数,小数位不固定(8-?)

我想将小数位固定为六(例如:1,234567)。

这是我的替身:

CStr(score)

我想这很简单:P

i have a double, the decimal place isn't fix (8-?)

i want to fix the decimal place to six (for example: 1,234567).

this is my double:

CStr(score)

i guess it's quiet simple :P

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

此刻的回忆 2024-08-30 17:31:26

试试这个:

score.ToString("0.000000")

Try this instead:

score.ToString("0.000000")
递刀给你 2024-08-30 17:31:26

您还可以 Math.Round(3.44, 1) '返回 3.4。

Math.Round

You can also Math.Round(3.44, 1) 'Returns 3.4.

Math.Round

双手揣兜 2024-08-30 17:31:26

小数点后添加零,如下所示

Dim tot as String
Dim totAmt 为 Double
总金额=10.10
tot=String.Format("{0:00.000}", totAmt)
输出:10.100

小数点后像这样删除零

totAmt=10.750
tot=Math.Round(totAmt,2)
输出:

10.75

After Decimal point Add Zero's like this

Dim tot as String
Dim totAmt as Double
totAmt=10.10
tot=String.Format("{0:00.000}", totAmt)
OutPut: 10.100

After Decimal point Remove Zero's like this

totAmt=10.750
tot=Math.Round(totAmt,2)
Output:10.75

Sloved

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文