Guest User

Untitled

a guest
Oct 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. # Area calculation program - yes this was out of a example
  2.  
  3. print "Welcome to the Area/volume calculation program"
  4. print "---------------------------------------"
  5. print
  6.  
  7. # display the first menu
  8. print "Make your selection now!"
  9. print "1 Flat"
  10. print "2 Volumetric"
  11.  
  12. selection = input("> ")
  13.  
  14. # display options for flat objects
  15. if selection == 1:
  16. print "Please select a shape:"
  17. print "1 Rectangle"
  18. print "2 Circle"
  19. print "3 Square"
  20.  
  21. shape = input("> ")
  22. # calculate their areas
  23. if shape == 1:
  24. height = input("Please enter the height: ")
  25. width = input("Please enter the width: ")
  26. area = height*width
  27. print "The area is", area
  28. elif shape == 2:
  29. radius = input("Please enter the radius: ")
  30. area = 3.14*(radius**2)
  31. print "The area is", area
  32. else:
  33. side = input("Please enter the side: ")
  34. area = side**2
  35. print "The area is", area
  36.  
  37. # display options for volumetric objects
  38. elif selection == 2:
  39. print "Please select a shape:"
  40. print "1 Cube"
  41. print "2 Sphere"
  42.  
  43. shape = input("> ")
  44.  
  45. # calculate their volumes
  46. if shape == 1:
  47. side = input("Please enter the side: ")
  48. volume = side**3
  49. print "The volume is", volume
  50.  
  51. elif shape == 2:
  52. radius = input("Please enter the radius: ")
  53. volume = (4*3.14*(radius**3))/3
  54. print "The volume is", volume
  55.  
  56. else:
  57. print "Please enter either '1' or '2'"
  58.  
  59.  
  60. # a little easter egg
  61. elif selection == 52:
  62. print "Are you really sure you want to play The Cheetahmen?"
  63. print "1 Yes!!!!!"
  64. print "2 No"
  65. insane = input("> ")
  66.  
  67. if insane == 1:
  68. print "Are you crazy??????????"
  69. elif insane == 2:
  70. print "Okay"
  71. else:
  72. print "Please choose either '1' or '2'"
  73.  
  74. else:
  75. print "Please choose either 1 or 2" # ;)
Add Comment
Please, Sign In to add comment