C#中如何取絕對值函數的方法詳解

來源:互聯網
上載者:User
本文主要介紹了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);
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.