Math类的使用

public static void main(String[] args)
	{
		int x = 4;
		System.out.println(Math.sqrt(x));//平方根
		System.out.println(Math.pow(x,2));//x的多少次幂
		//还有些其他的方法
		//如果要在所有平台都确保一致的结果的话就使用 StrictMath类,但是性能没Math类高。
	}


你可能感兴趣的:(Math类的使用)