告诉你Java绝对值函数是什么 - 极悦
首页 课程 师资 教程 报名

告诉你Java绝对值函数是什么

  • 2022-11-30 10:51:59
  • 2887次 极悦

为了在 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大专业测评方法

代码逻辑 吸收能力 技术学习能力 综合素质

先测评确定适合在学习

在线申请免费测试名额
价值1998元实验班免费学
姓名
手机
提交