java中常用的函數有:1.random()函數,返回一個隨機數;2.sqrt()函數,返回參數的算術平方根;3.abs()函數,返回參數的絕對值;
java中常用的函數有以下幾種
1.random()函數
java中random()函數的作用是用于返回一個隨機數。
random()函數語法:
static double random()
random()函數使用方法:
public class Test{
public static void main(String args[]){
System.out.println( Math.random() );
}
}
2.sqrt()函數
java中sqrt()函數的作用是用于返回參數的算術平方根。
sqrt()函數語法:
double sqrt(double d)
sqrt()函數使用方法:
public class Test{
public static void main(String args[]){
double x = 11.635;
System.out.printf( x, Math.sqrt(x));
輸出結果為:
3.411
3.abs()函數
java中abs()函數的作用是用于返回參數的絕對值。
abs()函數語法:
double Math.abs()
Math.abs()使用方法:
public class Test{
public static void main(String args[]){
Integer a = -8;
double d = -100;
System.out.println(Math.abs(a));
System.out.println(Math.abs(d));
}
}
輸出結果為:
8
100.0