-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula-15082018a.py
50 lines (37 loc) · 1.09 KB
/
aula-15082018a.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
class NumerosComplexos:
# construtor
def __init__(self, parte_real=0, parte_imaginaria=0):
# membros
self.__parte_real = parte_real
self.__parte_imaginaria = parte_imaginaria
# parte real
def get_parte_real(self):
return self.__parte_real
def set_parte_real(self, parte_real):
self.__parte_real = parte_real
# parte imaginaria
def get_parte_imaginaria(self):
return self.__parte_imaginaria
def set_parte_imaginaria(self, parte_imaginaria):
self.__parte_imaginaria = parte_imaginaria
# funcoes property
re = property(get_parte_real, set_parte_real)
im = property(get_parte_imaginaria, set_parte_imaginaria)
def imprime_numero_complexo(self, numero):
if numero > 0:
print('teste {} teste {}' .format(0, 1))
else:
print(numero)
def zerar_numero_real(self, numero):
self.__parte_real = numero
self.__parte_imaginaria = numero
def calcula_modulo(self):
pass
def calcula_conjulgado(self):
pass
def soma_complexos(self):
pass
def comapra_complexos(self):
pass
numero = NumerosComplexos();
numero.imprime_numero_complexo(3)