Answers for "java maths.abs"

0

math.absolute java

float a = 123.0f;
System.out.println(Math.abs(a)); //123.0

double d = -999.3456;
System.out.println(Math.abs(d)); //999.3456

int e = -123;
System.out.println(Math.abs(g)); //123

long g = -12345678;
System.out.println(Math.abs(g)); //12345678
Posted by: Guest on May-25-2021
0

maths.abs function in java

public static DataType abs(DataType a)
a : the argument whose absolute value is to be determined
Returns : This method returns the absolute value of the argument.
Posted by: Guest on June-22-2021

Browse Popular Code Answers by Language