国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網(wǎng)站 > WEB開發(fā) > 正文

【JS】前端數(shù)學(xué)函數(shù)應(yīng)用

2024-04-27 15:04:18
字體:
供稿:網(wǎng)友

我們一般開飯都使用java代碼,但有沒想過JS也可以做到呢?所以這次給大家整理了一下代碼方便大家

document.write("歐拉常數(shù)e的值為(e屬性):"+Math.E+"<br>");document.write("2的自然對數(shù)為(LN2屬性):"+Math.LN2+"<br>");//2的幾次方等于edocument.write("10的自然對數(shù)為(LN10屬性):"+Math.LN10+"<br>");//10的幾次方等于edocument.write("7的自然對數(shù)(log()方法):"+Math.log(7)+"<br>");//7的幾次方等于edocument.write("0的自然對數(shù)(log()方法):"+Math.log(0)+"<br>");document.write("-1的自然對數(shù)(log()方法):"+Math.log(-1)+"<br>");document.write("2的自然對數(shù)(log()方法):"+Math.log(2)+"<br>");//2的幾次方等于e	document.write("以2為基數(shù)的e的對數(shù)的值:"+Math.LOG2E+"<br>");//E的幾次方等于2	document.write("以10為基數(shù)的e的對數(shù)的值:"+Math.LOG10E+"<br>");//E的幾次方等于10document.write(Math.SQRT1_2);//0.5的平方根document.write(Math.SQRT2);//2的平方根document.write("2的平方根:"+Math.sqrt(2)+"<br>");document.write("4的平方根:"+Math.sqrt(4)+"<br>");document.write("5的平方根:"+Math.sqrt(5)+"<br>");document.write("10的平方根:"+Math.sqrt(10));document.write("-2的絕對值:"+Math.abs(-2)+"<br>");document.write("0的絕對值:"+Math.abs(0)+"<br>");document.write("2的絕對值:"+Math.abs(2)+"<br>");document.write("2.7的絕對值:"+Math.abs(2.7)+"<br>");document.write("-2.7的絕對值:"+Math.abs(-2.7));document.write("1的正弦值:"+Math.sin(1)+"<br>");document.write("0的正弦值:"+Math.sin(0)+"<br>");document.write("-1的正弦值:"+Math.sin(-1)+"<br>");document.write("1的反正弦值的正弦值:"+Math.sin(Math.asin(1))+"<br>");document.write("1的余弦值:"+Math.cos(1)+"<br>");document.write("0的余弦值:"+Math.cos(0)+"<br>");document.write("-1的余弦值:"+Math.cos(-1)+"<br>");document.write("1的反余弦值的余弦值:"+Math.cos(Math.acos(1))+"<br>");document.write("1的正切值:"+Math.tan(1)+"<br>");document.write("0的正切值:"+Math.tan(0)+"<br>");document.write("-1的正切值:"+Math.tan(-1)+"<br>");document.write("1的反正切值的正切值:"+Math.tan(Math.atan(1))+"<br>");document.write("3和5中的最大數(shù):"+Math.max(3,5)+"<br>");document.write("3和5中的最小數(shù):"+Math.min(3,5)+"<br>");document.write("-3和5中的最大數(shù):"+Math.max(-3,5)+"<br>");document.write("-3和5中的最小數(shù):"+Math.min(-3,5)+"<br>");document.write("3.5和3.4中的最大數(shù):"+Math.max(3.5,3.4)+"<br>");document.write("3.5和3.4中的最小數(shù):"+Math.min(3.5,3.4));document.write("對7.5進(jìn)行四舍五入:"+Math.round(7.5)+"<br>");document.write("對7.3進(jìn)行四舍五入:"+Math.round(7.3)+"<br>");document.write("對-7.8進(jìn)行四舍五入:"+Math.round(-7.8)+"<br>");document.write("對-7.3進(jìn)行四舍五入:"+Math.round(-7.3));document.write("對7.7進(jìn)行上舍入:"+Math.ceil(7.7)+"<br>");document.write("對7.3進(jìn)行上舍入:"+Math.ceil(7.3)+"<br>");document.write("對-7.8進(jìn)行上舍入:"+Math.ceil(-7.8)+"<br>");document.write("對-7.3進(jìn)行上舍入:"+Math.ceil(-7.3));document.write("對7.7進(jìn)行下舍入:"+Math.floor(7.7)+"<br>");document.write("對7.3進(jìn)行下舍入:"+Math.floor(7.3)+"<br>");document.write("對-7.8進(jìn)行下舍入:"+Math.floor(-7.8)+"<br>");document.write("對-7.3進(jìn)行下舍入:"+Math.floor(-7.3));

運(yùn)行結(jié)果:

歐拉常數(shù)e的值為(e屬性):2.7182818284590452的自然對數(shù)為(LN2屬性):0.693147180559945310的自然對數(shù)為(LN10屬性):2.3025850929940467的自然對數(shù)(log()方法):1.94591014905531320的自然對數(shù)(log()方法):-Infinity-1的自然對數(shù)(log()方法):NaN2的自然對數(shù)(log()方法):0.6931471805599453以2為基數(shù)的e的對數(shù)的值:1.4426950408889633以10為基數(shù)的e的對數(shù)的值:0.43429448190325180.70710678118654761.41421356237309512的平方根:1.41421356237309514的平方根:25的平方根:2.2360679774997910的平方根:3.1622776601683795-2的絕對值:20的絕對值:02的絕對值:22.7的絕對值:2.7-2.7的絕對值:2.71的正弦值:0.84147098480789650的正弦值:0-1的正弦值:-0.84147098480789651的反正弦值的正弦值:11的余弦值:0.54030230586813980的余弦值:1-1的余弦值:0.54030230586813981的反余弦值的余弦值:11的正切值:1.55740772465490230的正切值:0-1的正切值:-1.55740772465490231的反正切值的正切值:0.99999999999999993和5中的最大數(shù):53和5中的最小數(shù):3-3和5中的最大數(shù):5-3和5中的最小數(shù):-33.5和3.4中的最大數(shù):3.53.5和3.4中的最小數(shù):3.4對7.5進(jìn)行四舍五入:8對7.3進(jìn)行四舍五入:7對-7.8進(jìn)行四舍五入:-8對-7.3進(jìn)行四舍五入:-7對7.7進(jìn)行上舍入:8對7.3進(jìn)行上舍入:8對-7.8進(jìn)行上舍入:-7對-7.3進(jìn)行上舍入:-7對7.7進(jìn)行下舍入:7對7.3進(jìn)行下舍入:7對-7.8進(jìn)行下舍入:-8對-7.3進(jìn)行下舍入:-8


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 定西市| 潞城市| 宜昌市| 钦州市| 木兰县| 琼海市| 贵港市| 东光县| 麟游县| 钦州市| 翁源县| 翁牛特旗| 平南县| 孙吴县| 肥乡县| 阿拉善右旗| 新乐市| 溧阳市| 武夷山市| 湖北省| 保定市| 仁怀市| 新余市| 富阳市| 陵川县| 信宜市| 卫辉市| 容城县| 万年县| 夏河县| 化州市| 红河县| 富锦市| 青川县| 巍山| 磐石市| 中牟县| 永丰县| 岐山县| 晋江市| 宁晋县|