函數(shù)名: abs
站在用戶的角度思考問題,與客戶深入溝通,找到青縣網(wǎng)站設(shè)計(jì)與青縣網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊(cè)、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋青縣地區(qū)。
功 能: 求整數(shù)的絕對(duì)值
用 法: int abs(int i)
擴(kuò)展資料
在C語言中還有fabs,也是求絕對(duì)值的。(Java語言中有類似的作用。)
函數(shù)
格式:Abs(數(shù)值表達(dá)式)
功能:求表達(dá)式絕對(duì)值
說明:函數(shù)返回值類型與數(shù)值表達(dá)式的數(shù)據(jù)類型相同
例如:Abs(-3.7),其值為3.7。
與C語言中的abs有區(qū)別。
參考資料:abs-百度百科
有。C語言求絕對(duì)值的函數(shù)為abs( x )與fbs( x ),abs( x )包含于stdlib.h,且兩者均包含于math頭文件之下。
1、abs( x )函數(shù)
格式:int abs( int i );
作用:求整型數(shù)的絕對(duì)值
例子:
#includestdio.h
#include stdlib.h
#includemath.h
main(? ?)
{
int a = 1, b = -2 ;
printf("%d的絕對(duì)值是%d,%d的絕對(duì)值是%d\n", a, abs( a ), b, abs( b ));
}
運(yùn)行結(jié)果為:1的絕對(duì)值是1,-2的絕對(duì)值是2
2、fabs( x )函數(shù)
格式:float fabs( float i ); / double fabs( double x );
作用:求浮點(diǎn)數(shù)的絕對(duì)值
例子:
#includestdio.h
#includemath.h
main(? ?)
{
float a = 1.4, b = -2.7 ;
printf("%f的絕對(duì)值是%f,%f的絕對(duì)值是%f\n", a, fabs( a ), b, fabs( b ));
}
運(yùn)行結(jié)果為:1.400000的絕對(duì)值是1.400000,-2.700000的絕對(duì)值是2.700000
擴(kuò)展資料:
其他math.h頭文件包含函數(shù)介紹:
1、 三角函數(shù)
double sin(double);正弦
double cos(double);余弦
double tan(double);正切
2 、反三角函數(shù)
double asin (double); 結(jié)果介于[-PI/2,PI/2]
double acos (double); 結(jié)果介于[0,PI]
double atan (double); 反正切(主值),結(jié)果介于[-PI/2,PI/2]
double atan2 (double,double); 反正切(整圓值),結(jié)果介于[-PI,PI]
3 、雙曲三角函數(shù)
double sinh (double);
double cosh (double);
double tanh (double);
4 、指數(shù)與對(duì)數(shù)
double frexp(double value,int *exp);這是一個(gè)將value值拆分成小數(shù)部分f和(以2為底的)指數(shù)部分exp,并返回小數(shù)部分f,即f*2^exp。其中f取值在0.5~1.0范圍或者0。
double ldexp(double x,int exp);這個(gè)函數(shù)剛好跟上面那個(gè)frexp函數(shù)功能相反,它的返回值是x*2^exp
double modf(double value,double *iptr);拆分value值,返回它的小數(shù)部分,iptr指向整數(shù)部分。
double log (double); 以e為底的對(duì)數(shù)
double log10 (double);以10為底的對(duì)數(shù)
double pow(double x,double y);計(jì)算x的y次冪
float powf(float x,float y); 功能與pow一致,只是輸入與輸出皆為單精度浮點(diǎn)數(shù)
double exp (double);求取自然數(shù)e的冪
double sqrt (double);開平方根
5 、取整
double ceil (double); 取上整,返回不比x小的最小整數(shù)
double floor (double); 取下整,返回不比x大的最大整數(shù),即高斯函數(shù)[x]
方法一:用C語言中自帶的絕對(duì)值函數(shù)表示:
如果a是整數(shù):
#includestdio.h
#includemath.h
int a=100,b;
b=abs(a);
printf("%d",b);
如果a是浮點(diǎn)數(shù):
#includestdio.h
#includemath.h
float a=99.9;
float b;
b=fabs(a);
printf("%f",b);
方法二:自己編寫一個(gè)函數(shù)表示:
#include stdio.h
int abs(int t)
{
if (t0)
return t;
else
return -t;
}
int main()
{
int t = 0;
scanf("%d",t);
printf("%d",abs(t));
return 0;
}
以上兩種方法均可以實(shí)現(xiàn)求得絕對(duì)值。但使用abs函數(shù)時(shí),需要將頭文件#includemath.h包含到源文件中。
擴(kuò)展資料:
在C語言中,絕對(duì)值可以用庫函數(shù)fabs或abs來表示。
fabs表示對(duì)double型數(shù)據(jù)取絕對(duì)值。
abs表示對(duì)int型數(shù)據(jù)取絕對(duì)值。
函數(shù)原型是:double fabs(double x)。
1. C語言的庫函數(shù)中提供了求絕對(duì)值的函數(shù),函數(shù)名為 abs
2. 函數(shù)的頭文件:#include
3. 函數(shù)原型:int abs (int j);
4. 函數(shù)說明:abs()用來計(jì)算參數(shù)j 的絕對(duì)值,然后將結(jié)果返回。
5. 返回值:返回參數(shù)j 的絕對(duì)值結(jié)果。
c語言中取絕對(duì)值的函數(shù)
*?? ABS.C:?? This?? program?? computes?? and?? displays
*?? the?? absolute?? values?? of?? several?? numbers.
#include???? stdio.h
#include???? math.h
#include???? stdlib.h
void?? main(?? void?? )
{int???????? ix?? =?? -4,?? iy;
long?????? lx?? =?? -41567L,?? ly;
double?? dx?? =?? -3.141593,?? dy;
iy?? =?? abs(?? ix?? );
printf(?? "The?? absolute?? value?? of?? %d?? is?? %d/n",?? ix,?? iy);
ly?? =?? labs(?? lx?? );
printf(?? "The?? absolute?? value?? of?? %ld?? is?? %ld/n",?? lx,?? ly);
dy?? =?? fabs(?? dx?? );
printf(?? "The?? absolute?? value?? of?? %f?? is?? %f/n",?? dx,?? dy?? );
Output
The?? absolute?? value?? of?? -4?? is?? 4
The?? absolute?? value?? of?? -41567?? is?? 41567
The?? absolute?? value?? of?? -3.141593?? is?? 3.141593
可以用絕對(duì)值函數(shù)abs表示變量或常量的絕對(duì)值。
函數(shù)原型:int abs(int x)
功 能:求整數(shù)x的絕對(duì)值
返 回 值:計(jì)算結(jié)果
舉例:
1
2
3
int a=-5, b=5, c, d;
c = abs(a); // 計(jì)算后c=5
d = abs(b); // 計(jì)算后d=5
注:使用abs函數(shù)時(shí),需要將頭文件#includemath.h包含到源文件中
//求絕對(duì)值
#include iostream
#include iomanip
#includecmath
#define PI 3.1415927
using namespace std;
int main()
{? ?//C++求絕對(duì)值:如果是整形的,就是abs(),如果是浮點(diǎn)型的,是fabs()
double r;
while(cinr){
coutsetprecision(2)std::fixedfabs(r)endl;
}
return 0;
}
擴(kuò)展資料:
c語言中取絕對(duì)值的函數(shù)
不同類型的數(shù)據(jù)使用不同類型的絕對(duì)值函數(shù):
1、整型:
int abs(int i) ?//返回整型參數(shù)i的絕對(duì)值 12
2、復(fù)數(shù):
double cabs(struct complex znum) ?//返回復(fù)數(shù)znum的絕對(duì)值 ?1
3、雙精度浮點(diǎn)型:
double fabs(double x) ?//返回雙精度參數(shù)x的絕對(duì)值 ? ?1
4、長(zhǎng)整型:
long labs(long n) ?//返回長(zhǎng)整型參數(shù)n的絕對(duì)值