集册 Java实例教程 使用Math.pow寻找力量

使用Math.pow寻找力量

欢马劈雪     最近更新时间:2020-01-02 10:19:05

594
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用Math.pow寻找力量
// 来 自 N o w  J a v a  .   c o m

 

public class Main {

 

  public static void main(String[] args) {

     //returns 2 raised to 2, i.e. 4

     System.out.println(Math.pow(2,2));

   

     //returns -3 raised to 2, i.e. 9

     System.out.println(Math.pow(-3,2));

  }

}