亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

テキスト

Python 斐波那契數(shù)列


斐波那契數(shù)列指的是這樣一個數(shù)列 0, 1, 1, 2, 3, 5, 8, 13,特別指出:第0項是0,第1項是第一個1。從第三項開始,每一項都等于前兩項之和。

Python 實現(xiàn)斐波那契數(shù)列代碼如下:

# -*- coding: UTF-8 -*-

# Filename :test.py
# author by : www.shouce.ren

# Python 斐波那契數(shù)列實現(xiàn)

# 獲取用戶輸入數(shù)據(jù)
nterms = int(input("你需要幾項? "))

# 第一和第二項
n1 = 0
n2 = 1
count = 2

# 判斷輸入的值是否合法
if nterms <= 0:
   print("請輸入一個正整數(shù)。")
elif nterms == 1:
   print("斐波那契數(shù)列:")
   print(n1)
else:
   print("斐波那契數(shù)列:")
   print(n1,",",n2,end=" , ")
   while count < nterms:
       nth = n1 + n2
       print(nth,end=" , ")
       # 更新值
       n1 = n2
       n2 = nth
       count += 1

執(zhí)行以上代碼輸出結果為:

你需要幾項? 10
斐波那契數(shù)列:
0 , 1 , 1 , 2 , 3 , 5 , 8 , 13 , 21 , 34 ,

前の記事: 次の記事: