博客主页 🐟
Python------斐波那契数列
Python------斐波那契数列

Author:

©

Wordage:

共计 701 字

needs:

约 1 分钟

Popular:

198 ℃

Created:

目 录
    # -*- coding: UTF-8 -*-
    # Filename : test.py
    # Python 斐波那契数列实现
    # 获取用户输入数据
    
    nterms = int(input("你需要几项?"))
     
    # 第一和第二项
    n1 = 0
    n2 = 1
    count = 2
     
    # 判断输入的值是否合法
    if nterms <= 0:
       print("请输入一个正整数。")
    elif nterms == 1:
       print("斐波那契数列:")
       print(n1)
    else:
       print("斐波那契数列:")
       print(n1,",",n2,end=" , ")
       while count < nterms:
           nth = n1 + n2
           print(nth,end=" , ")
           # 更新值
           n1 = n2
           n2 = nth
           count += 1


----------
执行以上代码输出结果为:
你需要几项? 10
斐波那契数列:
0 , 1 , 1 , 2 , 3 , 5 , 8 , 13 , 21 , 34 ,
文章二维码
Python------斐波那契数列
共计 0 条评论,点此发表评论
博客主页 哀.net OωO
萌ICP备20238808号 本站已运行 1 年 209 天 3 小时 6 分 Copyright © 2023 ~ 2024. 哀.net All rights reserved.
打赏图
打赏博主
欢迎
搜 索
足 迹
分 类
  • 默认分类
  • 语言分类
  • 其他分类