Chinaunix首页 | 论坛 | 博客
  • 博客访问: 401301
  • 博文数量: 199
  • 博客积分: 154
  • 博客等级: 入伍新兵
  • 技术积分: 1530
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-14 08:43
文章分类

全部博文(199)

文章存档

2015年(101)

2014年(97)

2011年(1)

分类: Python/Ruby

2015-09-17 17:01:27

#coding=utf-8
# Area calculation program
print ("Welcome to the Area calculation program")
print ("*********************************")
print
# Print out the menu:
print ("Please select a shape:")
print ("1 Rectangle")
print ("2 Circle")
#Get the user's choice:         注意str->int
shape = int(input("> "))
#Calculate the area:      
if shape == 1:
      height = int(input("Please enter the height: "))
      width = int(input("Please enter the width: "))
      area = height *width
      print ("The area is ", area)
elif shape == 2:
      radius = int(input("Please enter the radius: "))
      area = 3.14 * (radius**2)
      print ("The area is ", area)
else:
    print ("Input is out of range,please re-enter.")
阅读(1870) | 评论(0) | 转发(0) |
0

上一篇:py3爬虫

下一篇:没有了

给主人留下些什么吧!~~