strictmath_Java StrictMath cbrt()方法與示例

strictmath

StrictMath類cbrt()方法 (StrictMath Class cbrt() method)

  • cbrt() method is available in java.lang package.

    cbrt()方法在java.lang包中可用。

  • cbrt() method is used to find the cube root of the given parameter in the method. Here, cbrt stands for cube root.

    cbrt()方法用于查找方法中給定參數的立方根。 在這里, cbrt代表cube root

  • cbrt() method is a static method so it is accessible with the class name and if we try to access the method with the class object then we will not get an error.

    cbrt()方法是一個靜態方法,因此可以使用類名進行訪問,如果嘗試使用類對象訪問該方法,則不會收到錯誤。

  • In this method, if we pass a positive parameter so it returns the cube root of the given parameter with the same sign(Positive) else if we pass negative parameter so it returns the cube root of the given parameter with the same sign(Negative).

    在此方法中,如果傳遞正參數,則返回給定參數的立方根(正);否則,傳遞負參數,使它返回給定參數的立方根(負) 。

  • cbrt() method does not throw any exception.

    cbrt()方法不會引發任何異常。

Syntax:

句法:

    public static double cbrt(double d);

Parameter(s):

參數:

  • double d – represents a double type value whose cube root to be found.

    double d –表示要查找其立方根的double類型值。

Return value:

返回值:

The return type of this method is double – it returns the cube root of given angle.

此方法的返回類型為double-返回給定角度的立方根。

Note:

注意:

  • If we pass NaN as an argument, method returns the same value (NaN).

    如果我們將NaN作為參數傳遞,則方法將返回相同的值(NaN)。

  • If we pass zero (0), method returns the same value with the same sign.

    如果傳遞零(0),則方法將返回具有相同符號的相同值。

  • If we pass an infinity, method returns the same value with the same sign.

    如果我們傳遞一個無窮大,則方法將返回帶有相同符號的相同值。

Example:

例:

// Java program to demonstrate the example
// of  cbrt(double d) method of StrictMath Class.
public class Cbrt {
public static void main(String[] args) {
// variable declarations
double d1 = -0.0;
double d2 = 0.0;
double d3 = -7.0 / 0.0;
double d4 = 7.0 / 0.0;
double d5 = 1000.0;
double d6 = -1000.0;
// Display previous value of d1,d2,d3,d4,d5 and d6
System.out.println("d1: " + d1);
System.out.println("d2: " + d2);
System.out.println("d3: " + d3);
System.out.println("d4: " + d4);
System.out.println("d5: " + d5);
System.out.println("d6: " + d6);
// Here , we will get (-0.0) because we are 
// passing parameter (-0.0) so the cube root is the same
System.out.println("StrictMath.cbrt(d1): " + StrictMath.cbrt(d1));
// Here , we will get (0.0) because we are 
// passing parameter (0.0) so the cube root is the same
System.out.println("StrictMath.cbrt(d2): " + StrictMath.cbrt(d2));
// Here , we will get (-Infinity) because we are 
// passing parameter (-7.0/0.0) so the cube root is (-Infinity)
System.out.println("StrictMath.cbrt(d3): " + StrictMath.cbrt(d3));
// Here , we will get (Infinity) because we are 
// passing parameter (7.0/0.0) so the cube root is (Infinity)
System.out.println("StrictMath.cbrt(d4): " + StrictMath.cbrt(d4));
// Here , we will get (10.0) because we are
// passing parameter (1000.0) so the cube root is 10.0
System.out.println("StrictMath.cbrt(d5): " + StrictMath.cbrt(d5));
// Here , we will get (-10.0) because we are
// passing parameter (-1000.0) so the cube root is (-10.0)
System.out.println("StrictMath.cbrt(d6): " + StrictMath.cbrt(d6));
}
}

Output

輸出量

d1: -0.0
d2: 0.0
d3: -Infinity
d4: Infinity
d5: 1000.0
d6: -1000.0
StrictMath.cbrt(d1): -0.0
StrictMath.cbrt(d2): 0.0
StrictMath.cbrt(d3): -Infinity
StrictMath.cbrt(d4): Infinity
StrictMath.cbrt(d5): 10.0
StrictMath.cbrt(d6): -10.0

翻譯自: https://www.includehelp.com/java/strictmath-cbrt-method-with-example.aspx

strictmath

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/541168.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/541168.shtml
英文地址,請注明出處:http://en.pswp.cn/news/541168.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

模塊---常用模塊

import osprint(os.getcwd()) #得到當前目錄#os.chmod("/usr/local",7) #給文件或者文件夾加權限,7為最高權限print(os.chdir("../")) #更改當前目錄print(os.curdir) #當前目錄print(os.pardir) #父目錄print(os.mkdir("test1")) #創…

excel添加列下拉框票價_excel表格下拉表格添加數據-excel2017表格中怎么制作下拉菜單列表框...

在Excel表中,如何將增加下拉菜單的選項?excel中的下拉菜單選項,就是篩選的功能,具體操作如下:1.首先選中a、b兩列數據,在“開始”選項卡上選擇“篩選”;2.這樣就在excel表中添加了下拉菜單選項。…

ajax實現兩個aspx跳轉,請問ajax執行成功后可以跳轉到另一個頁面嗎?

一只名叫tom的貓通過ajax讀取到寫好的jsp,另一個jsp可以放framse或者層都可以,顯示就行了123456789$.ajax({ type: "POST", //用post方式傳輸 dataType: "html", //數據格式:json…

Android橫豎屏切換View設置不同尺寸或等比例縮放的自定義View的onMeasure解決方案(2)...

Android橫豎屏切換View設置不同尺寸或等比例縮放的自定義View的onMeasure解決方案(2)附錄文章1以xml布局文件方式實現了一個view在橫豎屏切換時候的大小尺寸縮放,實現這種需求,也可以使用自定義View的onMeasure方法實現。比如&…

java中的push方法_Java ArrayDeque push()方法與示例

java中的push方法ArrayDeque類push()方法 (ArrayDeque Class push() method) push() Method is available in java.lang package. push()方法在java.lang包中可用。 push() Method is used to push an element onto the stack denoted by this deque. push()方法用于將元素壓入…

7段均衡器最佳參數_十段均衡器的設置和參數

本帖最后由 GTXarrow 于 2015-2-2 14:53 編輯EQ的基本定義:EQ是Equalizer的縮寫,大陸稱為均衡器,港臺稱為等化器。作用是調整各頻段信號的增益值。10段均衡器表示有10個可調節節點。節點越多,便可以調節出更精確的曲線,同時難度更…

本地 服務器 文件傳輸,本地服務器文件傳輸

本地服務器文件傳輸 內容精選換一換CDM支持周期性自動將新增文件上傳到OBS,不需要寫代碼,也不需要用戶頻繁手動上傳即可使用OBS的海量存儲能力進行文件備份。這里以CDM周期性備份FTP的文件到OBS為例進行介紹。例如:FTP服務器的to_obs_test目錄…

上市公司行情查詢站點

http://stock.finance.sina.com.cn/usstock/quotes/BABA.html

java peek方法_Java ArrayDeque peek()方法與示例

java peek方法ArrayDeque類peek()方法 (ArrayDeque Class peek() method) peek() Method is available in java.lang package. peek()方法在java.lang包中可用。 peek() Method is used to return the head element of the queue denoted by this deque but without removing t…

中怎么撤回消息_微信消息撤回也能看到,這個開源神器牛x!語音、圖片、文字都支持!...

1.前言 微信在2014年的時候,發布的v5.3.1 版本中推出了消息撤回功能,用戶可以選擇撤回 2 分鐘內發送的最后一條信息。現在很多即時通訊的軟件都有撤回這個功能。騰訊為了照顧手殘黨,在微信和QQ中都加入了【消息撤回】的功能。但是這個功能對于…

ntce服務器不穩定,當心!你的教師資格證成績失效了!| 服務

原標題:當心!你的教師資格證成績失效了!| 服務湖南的小王同學資格證筆試考了兩次才全部通過,想著好好歇歇,結果就誤了面試報名,等到第三年面試報名時才發現有一科筆試成績已經過期了......天吶,…

java中get接口示例_Java即時類| 帶示例的get()方法

java中get接口示例即時類的get()方法 (Instant Class get() method) get() method is available in java.time package. get()方法在java.time包中可用。 get() method is used to get the value of the given field from this Instant object. get()方法用于從此Instant對象獲…

深度學習與計算機視覺系列(6)_神經網絡結構與神經元激勵函數

作者:寒小陽 && 龍心塵 時間:2016年1月。 出處: http://blog.csdn.net/han_xiaoyang/article/details/50447834 http://blog.csdn.net/longxinchen_ml/article/details/50448267 聲明:版權全部。轉載請聯系作者并注明出…

datasnap xe連接池_DataSnap 連接池

二、 DataSnap連接池連接池http://docwiki.embarcadero.com/Libraries/XE8/en/Datasnap.DSSession.TDSSessionManagerhttp://docwiki.embarcadero.com/Libraries/XE8/en/Datasnap.DSSession.TDSSessionManager_MethodsTDSSessionManager::GetThreadSession()->IdTDSSessionM…

軟件測試工程師階段_軟件工程測試階段

軟件測試工程師階段Testing can be defined as checking the software for its correctness. In other words, we can define it as a process of observing a program for its behavior on providing some set of inputs (known as test cases) to check whether it is produc…

mysql左連接和右連接_MYSQL 左連接與右連接

一、 LEFT JOINLEFT JOIN 關鍵字從左表(table1)返回所有的行,即使右表(table2)中沒有匹配。如果右表中沒有匹配,則結果為 NULL。語法:SELECT column_name(s)FROM table1LEFT JOIN table2ON table1.column_nametable2.column_name;舉例&#x…

SIPp web frontend(2)

SIP VoIP 測試交流群: 323827101 歡迎大家轉載。為保留作者成果,轉載請注明出處。http://blog.csdn.net/netluoriver。有些文件在資源中也能夠下載。假設你沒有積分。能夠聯系我索要!3.6Adding calls to a test(為測試腳本添加呼叫) To add a call, use …

python學習中文第五版_前5個學習Python的網站

python學習中文第五版Python is a multi-utility high-level language (programming as well as a scripting language) first introduced in the year 1991 designed by ‘Guido Van Rossum’, and was named after ‘Monty Python’ which was a very famous British Comedy …

mysql排重_mysql 排重查詢

GROUP BY 語句可以實現某一列的去重查詢。直接上語句:select io_dev_id from io_info where (TID1 AND host_nameyang1) GROUP BY 1;按照io_dev_id去重查詢。p:順手加上與ORDER BY 和 distinct的區分使用GROUP BY 是根據列撿選ORDER BY 是根據列排序dist…

CentOS7入門_安裝并配置mysql5.7.18

2019獨角獸企業重金招聘Python工程師標準>>> 1.下載mysql5.7 mysql的官方下載地址 打開之后我們選擇對應的系統版本進行下載,之后選擇nothanks,不登陸直接下載(如果只是搭建最基本的的mysql的server只需要下載上圖4個基本rpm文件即可&#xf…