为了在 Java 中检索绝对值,我们使用abs()函数。
该abs()函数的一般语法是:
public static datatype abs(datatype number)
该函数将要确定其绝对值的参数作为输入。
该函数返回参数的绝对值。
让我们来看看我们如何使用该abs()函数找到绝对值!
class HelloWorld {
public static void main( String args[] ) {
/* Converting Integer values */
int x = 123;
int y = -789;
System.out.printf( "Absolute Value of x: %d
", Math.abs(x) );
System.out.printf( "Absolute Value of y: %d
", Math.abs(y) );
/* Converting Floating Point values */
float a = 1.23f;
float b = -7.9f;
System.out.printf( "Absolute Value of a: %f
", Math.abs(a) );
System.out.printf( "Absolute Value of b: %f
", Math.abs(b) );
}
}
你适合学Java吗?4大专业测评方法
代码逻辑 吸收能力 技术学习能力 综合素质
先测评确定适合在学习