publicclassTest{publicstaticvoidmain(String args[]){double x =11.635;double y =2.76;System.out.printf("The value of e is %.4f%n",Math.E);System.out.printf("pow(%.3f, %.3f) is %.3f%n", x, y,Math.pow(x, y));}}
Java
此操作将产生以下结果:
输出
The value of e is 2.7183pow(11.635,2.760) is 874.008