Python程序:计算奇数和

创新互联Python教程:

成都创新互联是一家集网站建设,濉溪企业网站建设,濉溪品牌网站建设,网站定制,濉溪网站建设报价,网络营销,网络优化,濉溪网站推广为一体的创新建站企业,帮助传统企业提升企业形象加强企业竞争力。可充分满足这一群体相比中小企业更为丰富、高端、多元的互联网需求。同时我们时刻保持专业、时尚、前沿,时刻以成就客户成长自我,坚持不断学习、思考、沉淀、净化自己,让我们为更多的企业打造出实用型网站。

编写一个 Python 程序,使用 While 循环和 For 循环计算从 1 到 N 的奇数之和,并给出一个例子。

用 For 循环计算从 1 到 N 的奇数和的 Python 程序

这个 Python 程序允许用户输入最大值。接下来,Python 将计算从 1 到用户输入的最大值的奇数之和。

在本例中,For 循环用于保持奇数在 1 和最大值之间。

提示:建议大家参考 Python 奇数从 1 到 N 的文章,了解 Python 打印奇数背后的逻辑。

# Python Program to Calculate Sum of Odd Numbers from 1 to N

maximum = int(input(" Please Enter the Maximum Value : "))
Oddtotal = 0

for number in range(1, maximum+1):
    if(number % 2 != 0):
        print("{0}".format(number))
        Oddtotal = Oddtotal + number

print("The Sum of Odd Numbers from 1 to {0} = {1}".format(number, Oddtotal)) 

Python 奇数和输出

 Please Enter the Maximum Value : 12
1
3
5
7
9
11
The Sum of Odd Numbers from 1 to 12 = 36

Python 程序显示从 1 到 N 的奇数之和,不带 If

这个 Python 奇数和程序同上。但是,我们在 for 循环中使用了第三个参数来消除 If 块。

# Python Program to Calculate Sum of Odd Numbers from 1 to N

maximum = int(input(" Please Enter the Maximum Value : "))
Oddtotal = 0

for number in range(1, maximum+1, 2):
    print("{0}".format(number))
    Oddtotal = Oddtotal + number

print("The Sum of Odd Numbers from 1 to {0} = {1}".format(number, Oddtotal))

Python 奇数和使用 for 循环输出

 Please Enter the Maximum Value : 15
1
3
5
7
9
11
13
15
The Sum of Odd Numbers from 1 to 15 = 64

使用 While 循环寻找奇数和的 Python 程序

在本 Python 程序中,我们将 For Loop 替换为 While Loop 。

# Python Program to Calculate Sum of Odd Numbers from 1 to N

maximum = int(input(" Please Enter the Maximum Value : "))
Oddtotal = 0
number = 1

while number <= maximum:
    if(number % 2 != 0):
        print("{0}".format(number))
        Oddtotal = Oddtotal + number
    number = number + 1

print("The Sum of Odd Numbers from 1 to {0} = {1}".format(maximum, Oddtotal))

Python 奇数和使用 while 循环输出

 Please Enter the Maximum Value : 20
1
3
5
7
9
11
13
15
17
19
The Sum of Odd Numbers from 1 to 20 = 100

寻找 1 到 100 的奇数和的 Python 程序

这个 Python 示例允许用户输入最小值和最大值。接下来,Python 计算从最小值到最大值的奇数之和。

# Python Program to Calculate Sum of Odd Numbers from 1 to 100

minimum = int(input(" Please Enter the Minimum Value : ")) 
maximum = int(input(" Please Enter the Maximum Value : "))
Oddtotal = 0

for number in range(minimum, maximum+1):
    if(number % 2 != 0):
        print("{0}".format(number))
        Oddtotal = Oddtotal + number

print("The Sum of Odd Numbers from {0} to {1} = {2}".format(minimum, maximum, Oddtotal))

分享文章:Python程序:计算奇数和
网站链接:http://www.mswzjz.cn/qtweb/news11/51261.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能