欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

C#中如何取绝对值函数的方法详解

程序员文章站 2022-05-01 18:32:19
...
本文主要介绍了C# 中取绝对值的函数。具有很好的参考价值。下面跟着小编一起来看下吧

话不多说,请看代码:

System.Math.Abs(float value);
System.Math.Abs(decimal value);
System.Math.Abs(int value);
System.Math.Abs(double value);
System.Math.Abs(sbyte value);
System.Math.Abs(long value);
System.Math.Abs(short value);

PS:下面看下c++ 取绝对值函数

int abs(int i) 返回整型参数i的绝对值

double cabs(struct complex znum) 返回复数znum的绝对值

double fabs(double x) 返回双精度参数x的绝对值

long labs(long n) 返回长整型参数n的绝对值

abs, labs, llabs, imaxabs - compute the absolute value of an integer.

SYNOPSIS

      #include  <stdlib.h>  
        int  abs(int  j);  
        long  int  labs(long  int  j);  
        long  long  int  llabs(long  long  int  j);  
        #include  <inttypes.h>  
        intmax_t  imaxabs(intmax_t  j);

以上就是C#中如何取绝对值函数的方法详解的详细内容,更多请关注其它相关文章!