提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用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)); } }