-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex059.py
28 lines (26 loc) · 841 Bytes
/
ex059.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
continuar = True
n1 = int(input('DIGITE O PRIMEIRO VALOR: '))
n2 = int(input('DIGITE O SEGUNDO VALOR: '))
while continuar:
print("""Digite:
[ 1 ] SOMAR
[ 2 ] MULTILPLICAR
[ 3 ] MAIOR
[ 4 ] NOVOS NÚMEROS
[ 5 ] SAIR DO PROGRAMA""")
escolha = input('->').strip()
if escolha == '1':
print('A SOMA DE {} E {} É {}'.format(n1, n2, n1 + n2))
elif escolha == '2':
print('A MULTIPLICAÇÂO DE {} E {} É {}'.format(n1, n2, n1 * n2))
elif escolha == '3':
print('O maior número é {}'.format(n1 if n1 > n2 else n2))
elif escolha == '4':
n1 = int(input('DIGITE O PRIMEIRO VALOR: '))
n2 = int(input('DIGITE O SEGUNDO VALOR: '))
elif escolha == '5':
continuar = False
else:
print('Escolha uma opção válida!')
continue
print('FIM')