文章目录 java导入数学包导入的包使用方法求绝对值求一个数的开放 java导入数学包 导入的包 import static java.lang.Math.*; 使用方法 求绝对值 int num=-10; //求num的绝对值 int ret=Math.abs(num); 求一个数的开放 double num=3.0;double ret=Math.sqrt(num); 学的不是技术,更是梦想!!!