- 1、本文档共35页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第1章 基 础 篇
1.28 绝对值函数的使用abs()
编写方式:
Math.abs(-1);
其中-1为要求绝对值的数值。
范例:
html
head
title绝对值函数的使用/title
/head
body
script language=javascript
!--
document.write(0的绝对值为:,Math.abs(0),br);
document.write(1的绝对值为:,Math.abs(1),br);
document.write(-1的绝对值为:,Math.abs(-1),br);
//--
/script
/body
/html
运行结果:1.29 四舍五入函数的使用round()
编写方式:
Math.round(3.14)
其中3.14为要进行四舍五入的数。
范例:
html
head
title四舍五入函数的使用/title
/head
body
script language=javascript
!--
document.write(3.14四舍五入为:,Math.round(3.14),br);
document.write(1.5四舍五入为:,Math.round(2.5),br);
//--
/script
/body
/html
运行结果:1.30 取整数函数的使用(ceil()与floor())
编写方式:
int = Math.floor(n);
int = Math.ceil(n);
其中n为要进行取整操作的数。
范例:
html
head
title取整函数的使用/title
/head
body
script language=javascript
!--
n = prompt(请输入一个要取整的数:);
if(n0){
int = Math.floor(n);
}else{
int = Math.ceil(n);
}
document.write(n,的整数为:,int);
//--
/script
/body
/html
运行结果:1.31 平方根函数的使用(sqrt())
编写方式:
Math.sqrt(n)
其中n为要进行求取平方根的数。
范例:
html
head
title平方根函数的使用/title
/head
body
script language=javascript
!--
n = prompt(请输入一个要平方根的数:);
document.write(n,的平方根为:,Math.sqrt(n));
//--
/script
/body
/html
运行结果:
图1.31
1.32 取得两个数中的最大数(max())或最小数(min())
编写方式:
Math.max(a,b);
Math.min(a,b);
范例:
html
head
title取得两个数中的最大数/title
/head
body
script language=javascript
!--
a = 1;
b = 2;
document.write(a = ,a,,b = ,b,br);
document.write(a,b中最大的一个数为:,Math.max(a,b));
document.write(br);
document.write(a,b中最小的一个数为:,Math.min(a,b));
//--
/script
/body
/html
运行结果:
图1.32
1.33 随机函数(random())
编写方式:
Math.random();
取得0~1之间的随机数。
Math.floor(Math.random() * 10);
取得0~9之间的整数随机数。
范例:
html
head
title随机函数/title
/head
body
script language=javascript
!--
for(i=1;i=5;i++){
num = Math.floor(Math.random() * 10);
document.write(num, );
}
//--
/script
/body
/html
运行结果:
图1.33
1.34 圆形面积计算
编写方式:
圆形面积的计算公式为:圆周率×圆半径2
在JavaScript中表示为:area = Math.PI * Math.pow(radius,2);
范例:
html
head
title圆形面积计算/title
/head
body
script language=javascript
!--
radius = prompt(请输入圆的半径:);
area =
文档评论(0)