首页 综合精选 > 正文

c语言绝对值函数怎么写的(c语言绝对值)

导读 #include #include void main(){ int a = 4, b = -5, c = 3; int max = a; if(abs(b) > abs(max) ) { max = ...

#include #include void main(){ int a = 4, b = -5, c = 3; int max = a; if(abs(b) > abs(max) ) { max = b; } if(abs(c) > abs(max)) { max = c; } printf("max:%d", max);}=====================================abs Calculates the absolute value. int abs( int n ); or Example /* ABS.C: This program computes and displays * the absolute values of several numbers. */ #include #include #include 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", ix, iy); ly = labs( lx ); printf( "The absolute value of %ld is %ld", lx, ly); dy = fabs( dx ); printf( "The absolute value of %f is %f", 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。

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。