我是靠谱客的博主 善良麦片,最近开发中收集的这篇文章主要介绍c语言isnan,C# Double.IsNaN()用法及代码示例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在C#中,Double.IsNaN()是Double结构方法。此方法用于检查指定的值是否不是数字(NaN)。

用法: public static bool IsNaN (double d);

参数:

d:它是System.Double类型的双精度浮点数。

返回类型:如果指定的值不是数字(NaN),则此函数返回布尔值,即True,否则返回False。

例:

Input : d = 0.0 / 0.0

Output : True

Input : d = 1.734

Output : False

代码:演示Double.IsNaN(Double)方法。

// C# code to demonstrate

// Double.IsNaN(Double) method

using System;

class GFG {

// Main Method

public static void Main(String[] args)

{

// first example

Double f1 = 1.0 / 0.0;

bool res = Double.IsNaN(f1);

// printing the output

if (res)

Console.WriteLine(f1 + " is NaN");

else

Console.WriteLine(f1 + " is not NaN");

// second example

double f2 = 0.0 / 0.0;

bool res1 = Double.IsNaN(f2);

// printing the output

if (res1)

Console.WriteLine(f2 + " is NaN");

else

Console.WriteLine(f2 + " is not NaN");

}

}

输出:

Infinity is not NaN

NaN is NaN

注意:

如果我们将任何值直接除以0,编译器将显示错误。因此,在上面的示例中,0首先存储在变量中。

每个浮点运算都会返回一个NaN,以表明该运算的结果是不确定的。

最后

以上就是善良麦片为你收集整理的c语言isnan,C# Double.IsNaN()用法及代码示例的全部内容,希望文章能够帮你解决c语言isnan,C# Double.IsNaN()用法及代码示例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部