Java開根號與平方

使用.pow() 或是.sqrt()  來達到平方開根號

平方
Math.pow();

// 平方 .pow( 數 , 幾次方 )
double result1 =Math.pow(10, 2);//10的2次方
System.out.println( result1);
double result2 =Math.pow(2, 5);//2的5次方
System.out.println( result2 );


/* 結果輸出 */
result1 : 100.0
result2 : 32.0


//也可使用.pow來達到開根號

開根號
Math.pow()  或  Math.sqrt();

//pow
double result_pow=Math.pow( 100 , 0.5 ); //100的0.5次方 = 100開根號
System.out.println(result_pow);

/* 結果輸出 */
result_pow: 10.0



//sqrt
double result_sqrt = Math.sqrt(100);
System.out.println( result_sqrt );

/* 結果輸出 */
result_sqrt : 10.0

 


人生美好~別浪費腦容量記程式碼 :- ) 

作者:CYL
出處:http://dotblogs.com.tw/cylcode
資料來源都會特別註明,有興趣都可查詢原出處,本站皆經過整理才分享,如有轉載請顯示出處及作者,感謝。