10 lines
105 B
C
10 lines
105 B
C
#include <math.h>
|
|
|
|
double fabs(double x) {
|
|
if(x < 0) {
|
|
return -x;
|
|
}
|
|
else {
|
|
return x;
|
|
}
|
|
}
|