這篇文章主要講解了“Java Math類中取整函數(shù)、三角函數(shù)和指數(shù)函數(shù)方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Java Math類中取整函數(shù)、三角函數(shù)和指數(shù)函數(shù)方法”吧!
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供榆中網(wǎng)站建設(shè)、榆中做網(wǎng)站、榆中網(wǎng)站設(shè)計、榆中網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、榆中企業(yè)網(wǎng)站模板建站服務(wù),十余年榆中做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
1.Math類取整函數(shù)方法,如下所示:
public static double ceil(double a)方法:返回double類值的最小值,這個值大于或等于。簡單來說是向上取整;
public static double floor(double a)方法:返回double類值的最大值,這個值小于或等于。簡單來說是向下取整;
public static double rint(double a)方法:返回最接近的參數(shù)a的值,并且它的值是double類型的值;
public static int round(float a)方法:返回最接近的參數(shù)加上0.5將結(jié)果轉(zhuǎn)換為int類型,也就是四舍五入取整;
public static long round(double a)方法:返回最接近的參數(shù)加上0.5將結(jié)果轉(zhuǎn)換為long類型,也就是四舍五入取整;
2.Math類取整函數(shù)方法例子:
public class p71 { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("ceil()方法 :"+Math.ceil(2.1)); System.out.println("ceil()方法 :"+Math.ceil(2.5)); System.out.println("ceil()方法 :"+Math.ceil(2.8)); System.out.println("floor()方法 :"+Math.floor(1.1)); System.out.println("floor()方法 :"+Math.floor(1.5)); System.out.println("floor()方法 :"+Math.floor(1.8)); System.out.println("rint()方法 :"+Math.rint(3.1)); System.out.println("rint()方法 :"+Math.rint(3.5)); System.out.println("rint()方法 :"+Math.rint(3.8)); System.out.println("round()方法 :"+Math.round(5.1)); System.out.println("round()方法 :"+Math.round(5.5)); System.out.println("round()方法 :"+Math.round(5.8)); } }
運行的結(jié)果是:
1.Math類三角函數(shù)方法,如下所示:
public static double sin(double a)方法:返回參數(shù)的正弦值,a是以弧度表示角度;
public static double cos(double a)方法:返回參數(shù)的余弦值,a是以弧度表示角度;
public static double tan(double a)方法:返回參數(shù)的正切值,a是以弧度表示角度;
public static double asin(double a)方法:返回參數(shù)的反正弦值;
public static double acos(double a)方法:返回參數(shù)的反余弦值;
public static double atan(double a)方法:返回參數(shù)的反正切值;
public static double toRadians(double a) : 把角度轉(zhuǎn)換為弧度;
public static doueble toDegrees(double a) : 把弧度轉(zhuǎn)化為角度;
2.Math類三角函數(shù)方法例子
public class p72 { public static void main(String[] args) { // TODO Auto-generated method stub double p=Math.PI; System.out.println("30度的正弦值:"+Math.sin(p/6)); System.out.println("90度的正弦值:"+Math.sin(p/2)); System.out.println("0度的余弦值:"+Math.cos(0)); System.out.println("30度的余弦值:"+Math.cos(p/6)); System.out.println("1的反正切值:"+Math.atan(1)); System.out.println("60度的弧度值:" + Math.toRadians(60.0)); } }
運行的結(jié)果是:
1.Math類指數(shù)函數(shù)方法,如下所示:
public static double sqrt(double a ):用來取a的平方根(a2);
public static double cbrt(double a ):用來取a的立方根(a3);
public static double log(double a ):相當(dāng)于lna;
public static double log10(double a ):以10為底的對數(shù),也就是log10a;
public static double exp(double a ):用來獲取e的a次方;
public static double pow(double a,double b):a表示底數(shù),b表示指數(shù),用來求a的b次方;
2.Math類指數(shù)函數(shù)方法例子:
public class p73 { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("e的二次方"+Math.exp(2)); System.out.println("2的立方值:"+Math.pow(2, 3)); System.out.println("9的平方根:"+Math.sqrt(9)); System.out.println("10為底 10的對數(shù):"+Math.log10(10)); } }
運行的結(jié)果是:
本文主要介紹了Math類取整函數(shù)方法、三角函數(shù)方法、指數(shù)函數(shù)方法。
Math類取整函數(shù)方法有ceil、floor、rint、round,這些方法通過例子了解它的用法。Math類三角函數(shù)方法有sin、cos、tan、toRadians、toDegrees等,這些方法通過例子了解它的用法。
Math類指數(shù)函數(shù)方法有sqrt、cbrt、log、log10等,這些方法通過例子了解它的用法。希望大家通過本文的學(xué)習(xí),對你有所幫助!
感謝各位的閱讀,以上就是“Java Math類中取整函數(shù)、三角函數(shù)和指數(shù)函數(shù)方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Java Math類中取整函數(shù)、三角函數(shù)和指數(shù)函數(shù)方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!