mirror of
https://github.com/Aroy-Art/Learning-Python.git
synced 2025-04-29 22:37:50 +02:00
Moved AreaCalc to tools dir and fixed triangle
This commit is contained in:
parent
449e95dd3f
commit
82ef828864
1 changed files with 6 additions and 10 deletions
111
Tools/AreaCalc/AreaCalc.py
Normal file
111
Tools/AreaCalc/AreaCalc.py
Normal file
|
@ -0,0 +1,111 @@
|
|||
import math
|
||||
|
||||
print('''Which Area/Volume Are You Calculating
|
||||
[0] Quit
|
||||
[1] Square
|
||||
[2] Cube
|
||||
[3] Pyramid
|
||||
[4] Circle
|
||||
[5] Arch Length
|
||||
[6] Circle Section
|
||||
[7] Cylinder
|
||||
[8] Cone
|
||||
[9] Sphere
|
||||
[10] Triangle
|
||||
[11] Prism''')
|
||||
|
||||
calcOpti = int(input('Choose An Option For The List Above: '))
|
||||
|
||||
if calcOpti == 0: # If calcOpti is 0 then quit.
|
||||
exit()
|
||||
|
||||
if calcOpti == 1: # Calculating the area of a square.
|
||||
print('\nYou have chosen the option: Square')
|
||||
SideA = float(input('How Wide is side A: '))
|
||||
SideB = float(input('How Wide is side B: '))
|
||||
sAxsB = SideA * SideB
|
||||
print(f'The Square Area is: {sAxsB:.6f}')
|
||||
|
||||
if calcOpti == 2: # Calculating the volume of a cube.
|
||||
print('\nYou have chosen the option: Cube')
|
||||
SideA = float(input('How Wide is side A: '))
|
||||
SideB = float(input('How Wide is side B: '))
|
||||
SideC = float(input('How Wide is side C: '))
|
||||
sAxsBxsC = SideA * SideB * SideC
|
||||
print(f'The Cube Volume is: {sAxsBxsC:.6f}')
|
||||
|
||||
if calcOpti == 3: # Calculating the volume of a pyramid.
|
||||
print('\nYou have chosen the option: Pyramid')
|
||||
SideA = float(input('How Wide is side A: '))
|
||||
SideB = float(input('How Wide is side B: '))
|
||||
Height = float(input('How High is it: '))
|
||||
sAxsBxsH = SideA * SideB * Height / 3
|
||||
print(f'The Pyramid Volume is: {sAxsBxsH:.6f}')
|
||||
|
||||
if calcOpti == 4: # Calculating the area of a circle.
|
||||
print('\nYou have chosen the option: Circle')
|
||||
Radius = float(input('How Wide is Radius: '))
|
||||
preArea = Radius * Radius
|
||||
prePi = math.pi * preArea
|
||||
print(f'The Circle Area is: {prePi:.6f}')
|
||||
|
||||
if calcOpti == 5: # Calculating the arch length of a circle.
|
||||
print('\nYou have chosen the option: Arch Length')
|
||||
Angle = float(input('What is the angle(°): '))
|
||||
Radius = float(input('What is the Radius: '))
|
||||
a = Angle
|
||||
r = Radius
|
||||
Answer = a / 360 * math.pi * 2 * r
|
||||
print(f'The arch length is: {Answer:.6f}')
|
||||
|
||||
if calcOpti == 6: # Calculating the area of a circle section.
|
||||
print('\nYou have chosen the option: Circle Section')
|
||||
Angle = float(input('What is the angle(°): '))
|
||||
Radius = float(input('What is the Radius: '))
|
||||
a = Angle
|
||||
r = Radius
|
||||
Answer = a / 360 * math.pi * r * r
|
||||
print(f'The Circle Section area is: {Answer:.6f}')
|
||||
|
||||
if calcOpti == 7: # Calculating the volume of a cylinder.
|
||||
print('\nYou have chosen the option: Cylinder')
|
||||
Radius = float(input('How Wide is Radius: '))
|
||||
Height = float(input('How High is it: '))
|
||||
preArea = Radius * Radius
|
||||
prePi = math.pi * preArea
|
||||
preCyl = prePi * Height
|
||||
print(f'The Cylinder Volume is: {preCyl:.6f}')
|
||||
|
||||
if calcOpti == 8: # Calculating the volume of a cone.
|
||||
print('\nYou have chosen the option: Cone')
|
||||
Radius = float(input('How Wide is Radius: '))
|
||||
Height = float(input('How High is it: '))
|
||||
preArea = Radius * Radius
|
||||
prePi = math.pi * preArea
|
||||
preCyl = prePi * Height / 3
|
||||
print(f'The Cone Volume is: {preCyl:.6f}')
|
||||
|
||||
if calcOpti == 9: # Calculating the volume of a sphere.
|
||||
print('\nYou have chosen the option: Sphere')
|
||||
Radius = float(input('How Wide is Radius: '))
|
||||
r = Radius
|
||||
prePi = r * r * r
|
||||
pre4 = prePi * math.pi
|
||||
preD3 = pre4 * 4
|
||||
Answer = preD3 / 3
|
||||
print(f'The Sphere Volume is: {Answer:.6f}')
|
||||
|
||||
if calcOpti == 10: # Calculating the area of a triangle
|
||||
print('\nYou have chosen the option: Triangle')
|
||||
sideA = float(input('How Wide is aide A: '))
|
||||
sideB = float(input('How Wide is side B: '))
|
||||
Answer = sideA * sideB / 2
|
||||
print(f'The Triangle Area is: {Answer:.6f}')
|
||||
|
||||
if calcOpti == 11: # Calculating the volume of a prism.
|
||||
print('\nYou have chosen the option: Prism')
|
||||
sideA = float(input('How Wide is aide A: '))
|
||||
sideB = float(input('How Wide is side B: '))
|
||||
Length = float(input('How long is the Prism: '))
|
||||
Answer = sideA * sideB / 2 * Length
|
||||
print(f'The Prism Volume is: {Answer:.6f}')
|
Loading…
Add table
Add a link
Reference in a new issue