public表示该方法是共有的,static表名方法是静态的,
main是java程序的入口,程序从main方法开始运行,String【】 args 是在java运行的过程中可以从命令行传入的参数:
cmd中javac hello.java
java hello xx yy cc
其中xx yy cc就是程序运行的时候传入的参数:args【0】,args【1】,args【3】。
java.lang.Math方法:pow(double a,double b)
返回a的b次幂
或者
java.math.BigDecimal
方法:public BigDecimal pow(int n)
返回其值为 (this^n) 的 BigDecimal,准确计算该幂,使其具有无限精度。
Math类属于java.lang包中的函数,所以在使用的过程中,不需要导入这个库,可以直接使用的。package test
public class promble02 {
public static void main(String[] args) {
// TODO Auto-generated method stub
double pi = Math.PI
System.out.println(pi)
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)