暂无 |

Math.pow 方法实例

<script language="JavaScript">

document.write( Math.pow(0,0) + "<br />" );
document.write(Math.pow(0,1) + "<br />")
document.write( Math.pow(1,0) + "<br />" );
document.write( Math.pow(2,2) + "<br />" );
document.write( Math.pow(2,5) );

</script>

运行该例子,输出:

1
0
1
4
32
java教程
php教程
php+mysql教程
ThinkPHP教程
MySQL
C语言
css
javascript
Django教程

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论