-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex059.py
33 lines (30 loc) · 930 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
29
30
31
32
33
from time import sleep
#entrada
sair = False
n1 = int(input('Primeiro valor: '))
n2 = int(input('Segundo valor: '))
while not sair:
print(''' [ 1 ] somar
[ 2 ] multiplicar
[ 3 ] maior
[ 4 ] novos números
[ 5 ] sair do programa''') #menu
opcao = int(input('>>>>> Qual é a sua opção? '))
#processamento & saida
if opcao < 1 or opcao > 5:
print('\033[31mOpção inválida!\033[m')
elif opcao == 1:
print(f'A soma entre {n1} e {n2} é {n1 + n2}')
elif opcao == 2:
print(f'A multiplicação entre {n1} e {n2} é {n1 * n2}')
elif opcao == 3:
print(f'Entre {n1} e {n2} o maior é {max(n1, n2)}')
elif opcao == 4:
print('Informe os números novamente: ')
n1 = int(input('Primeiro valor: '))
n2 = int(input('Segundo valor: '))
else:
sair = True
print('Finalizando...')
sleep(1.5)
print('-=' * 15)