-
Notifications
You must be signed in to change notification settings - Fork 0
/
18.py
58 lines (44 loc) · 1.47 KB
/
18.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from math import pi
opcion=""
while opcion!="3":
print ("Las opciones son: ")
print ("1) Calcular perímetro.")
print ("2) Calcular área.")
print ("3) Salir.")
opcion=input("Ingrese la opción deseada: ")
if opcion=="1":
print ("Las opciones son: ")
print ("1) Triángulo.")
print ("2) Cuadrado. ")
print ("3) Círculo")
print ("4) Regresar. ")
opcion1=input("Ingrese la opción deseada: ")
if opcion1=="1":
a=int(input("Ingrese lado del triángulo: "))
b=int(input("Ingrese lado del triángulo: "))
c=int(input("Ingrese lado del triángulo: "))
print ("El perímetro es: ",a+b+c)
if opcion1=="2":
a=int(input("Ingrese lado del cuadrado: "))
print ("El perímetro es: ",4*a)
if opcion1=="3":
a=float(input("Ingrese radio del círculo: "))
print ("El perímetro es: ",2*pi*a)
if opcion=="2":
print ("Las opciones son: ")
print ("1) Triángulo.")
print ("2) Cuadrado. ")
print ("3) Círculo")
print ("4) Regresar. ")
opcion1=input("Ingrese la opción deseada: ")
if opcion1=="1":
a=int(input("Ingrese altura del triángulo: "))
b=int(input("Ingrese base del triángulo: "))
print ("El área es: ",a*b/2)
if opcion1=="2":
a=int(input("Ingrese lado del cuadrado: "))
print ("El área es: ",a**2)
if opcion1=="3":
a=float(input("Ingrese radio del círculo: "))
print ("El área es: ",pi*(a**2))
print ("Gracias por usar el programa.")