4 3 將千克轉換成磅

2021-10-08 06:57:44 字數 952 閱讀 3228

description

編寫程式,輸入乙個正整數n,顯示下面n+1行的**,將千克轉換成磅。(注意:1千克為2.2磅)

一行的兩個數字中間空乙個tab位。

例:input

輸入乙個正整數n

output

輸出n+1行的結果。格式如下:

sample input

7sample output

kg pound

1 2.2

3 6.6

5 11.0

7 15.4

9 19.8

11 24.2

13 28.6

hint

注意:雙精度有可能產生數字計算微量誤差,需解決。

def

generate_map

(number)

: result =

dict()

for i in

range(0

,number)

: j =

2*i+

1 const =

2.2 result[j]

= j*const

return result

input_number =

input()

input_number =

int(input_number)

result = generate_map(input_number)

print

("{}\t{}"

.format

("kg"

,"pound"))

for key,item in result.items():

print

("\t"

.format

(key,item)

)

將0 06轉換成6

numberformat num numberformat.getpercentinstance 返回當前預設語言環境的百分比格式。num.setmaximumintegerdigits 2 設定數的整數部分所允許的最大位數 num.setmaximumfractiondigits 2 設定數的小數...

C 漢字轉拼音 將中文轉換成拼音

建立乙個公共類,用於轉換漢字 public class chntoph 定義拼音陣列 private static string getname new string 建立乙個convertch方法用於將漢字轉換成全拼的拼音,其中,引數代表漢字字串,此方法的返回值是轉換後的拼音字串 public s...

C 中如何將 4 轉換成4

還是來搞搞清楚一些基礎的東西,字串轉換成整型很簡單,只需要使用convert.toint16 string,formbase 就可以了,123 直接轉換成123。現在我要將0x34這個位元組或者52這個整型轉換成4,那麼需要經歷以下幾步 第一步 將0x34轉換成 4 convert.tochar 0...