python立方根
A. 求用python計算任意一個數,先對其取絕對值,然後計算其平方、平方根、立方和立方根並輸出結果的代碼。
python如何計算平方和平方根在python中,有多種方法可以求一個數的平方和平方根,可以使用:內置模塊、表達式、內置函數等實現。1.使用內置模塊mathimport mathmath.pow(4,2) 求4的平方...
B. 輸入一個自然數,若為奇數則輸出其平方根,否則輸出其立方根,對這個進行編程
直接用c++
#include <iostream>
#include <math>
if(a%2==0)
b=pow(a,0.5);
else
b=pow(a,1/3);
cout<<b<<endl;
return 0;
或:
核心代碼
Scanner s = new Scanner(System.in);
double result;
while(s.hasNextInt()){
int i = s.nextInt();
if(i/2==1){
result = Math.sqrt(i);
}else{
result = Math.log(i);
(2)python立方根擴展閱讀:
以下數值均取6位有效數字,正被開方數取正值,負被開方數取負值
±1:±1.00000
±2:±1.25992
±3:±1.44225
±4:±1.58740
±5:±1.70998
±6:±1.81712
±7:±1.91293
±8:±2.00000
±9:±2.08008
±10:±2.15443
±11:±2.22398
±12:±2.28943
±13:±2.35133
±14:±2.41014
C. python編程題求助
a=28
e=0.0001
t=a
whileabs(t*t*t-a)>e:
t=t-(t*t*t-a)*1.0/(3*t*t)
print("%.10f"%t)
a是被開方數
D. 14,783的的立方根
手算:因為25³=15625>14783>24³=13824
所以14783的立方根在24到25之間
機算:如圖
使用python
輸入14783**(1/3)
得到
24.54261637383651(箭頭1)
經驗算,成立,誤差可接受(箭頭2)
E. 兩立方根和什麼意思
就是兩個實跟的和,兩個解的和,
F. 輸入10個數,輸出對應的立方根python程序
>>>importmath
>>>math.pow(27,1.0/3)
3.0
注意:這種方法求立方根是不準確的。
>>>math.pow(64,1.0/3)
>>>math.pow(64,1.0/3)
3.9999999999999996
上面是求立方根的方法。
輸入10個數,求立方根:
>>>test=raw_input()
12345678910
>>>foriintest.split():
math.pow(int(i),1.0/3)
1.0
1.2599210498948732
1.4422495703074083
1.5874010519681994
1.7099759466766968
1.8171205928321397
1.912931182772389
2.0
2.080083823051904
2.154434690031884