如何确定是否一个小数/双为整数? [英] How to determine if a decimal/double is an integer?

查看:241
本文介绍了如何确定是否一个小数/双为整数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何判断一个小数或双值为整数?

How do I tell if a decimal or double value is an integer?

例如:

decimal d = 5.0; // Would be true
decimal f = 5.5; // Would be false

double d = 5.0; // Would be true
double f = 5.5; // Would be false

我想知道这种情况的原因是,这样我可以编程方式确定如果我想使用的输出的ToString(NO)值或的ToString(N2)。如果没有小数点值,那么我不想证明。

The reason I would like to know this is so that I can determine programmatically if I want to output the value using .ToString("N0") or .ToString("N2"). If there is no decimal point value, then I don't want to show that.

推荐答案

有关浮点数, N%1 == 0 通常是检查是否有路任何过去的小数点。

For floating point numbers, n % 1 == 0 is typically the way to check if there is anything past the decimal point.

    public static void Main (string[] args)
    {
        decimal d = 3.1M;
        Console.WriteLine((d % 1) == 0);
        d = 3.0M;
        Console.WriteLine((d % 1) == 0);
    }

输出:

False
True

这篇关于如何确定是否一个小数/双为整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆