tft每日頭條

 > 生活

 > c語言中如何引入數學函數

c語言中如何引入數學函數

生活 更新时间:2024-12-13 04:53:58

c語言中如何引入數學函數?原函數:int abs(int x),現在小編就來說說關于c語言中如何引入數學函數?下面内容希望能幫助到你,我們來一起看看吧!

c語言中如何引入數學函數(C語言庫函數之abs詳解)1

c語言中如何引入數學函數

原函數:

int abs(int x)

函數說明:int abs(int x) 返回x的絕對值。

參數:

  • x -- 是整數值。

返回值:

函數返回x的絕對值。

如何使用 abs() 函數:

#include <stdio.h>

#include <stdlib.h>

int main () {

int a, b;

a = abs(15);

printf("The value of a = %d \n", a);

b = abs(-20);

printf("The value of b = %d \n", b);

return(0);

}

編譯和運行上面的程序,産生下如結果:

The value of a = 15

The value of b = 20

,

更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!

查看全部

相关生活资讯推荐

热门生活资讯推荐

网友关注

Copyright 2023-2024 - www.tftnews.com All Rights Reserved