ν΄λμ€μ κ°μ²΄
- ν΄λμ€λ‘ λ§λ κ°μ²΄λ κ°μ²΄λ§λ€ κ³ μ ν μ±κ²©μ κ°μ§.
- λμΌν ν΄λμ€λ‘ λ§λ κ°μ²΄λ€μ μλ‘ μ ν μν₯μ μ£Όμ§ μλλ€.
# μμ) μ¬μΉμ°μ° ν΄λμ€
class FourCal:
def setdata(self, first, second):
self.first = first
self.second = second
def add(self):
result = self.first + self.second
return result
def sub(self):
result = self.first - self.second
return result
def mul(self):
result = self.first * self.second
return result
def div(self):
result = self.first / self.second
return result
first, second, num = map(int, input().split())
cal = FourCal()
cal.setdata(first, second)
if num == 1:
res = cal.add()
elif num == 2:
res = cal.sub()
elif num == 3:
res = cal.mul()
else:
res = cal.div()
print(res)
μμ±μ(Counstructor)
- κ°μ²΄κ° μμ±λ λ μλμΌλ‘ νΈμΆλλ λ©μλ
- __init__ μ΄μ©
class FourCal:
def __init__(self, first, second): # μμ±μ
self.first = first
self.second = second
def setdata(self, first, second):
self.first = first
self.second = second
def add(self):
result = self.first + self.second
return result
def sub(self):
result = self.first - self.second
return result
def mul(self):
result = self.first * self.second
return result
def div(self):
result = self.first / self.second
return result
first, second, num = map(int, input().split())
cal = FourCal(first, second) # κ°μ²΄ μμ± μ μμ±μμ 맀κ°λ³μμ ν΄λΉλλ κ°μ μ λ¬ν΄μ€μΌ ν¨
if num == 1:
res = cal.add()
elif num == 2:
res = cal.sub()
elif num == 3:
res = cal.mul()
else:
res = cal.div()
print(res)
ν΄λμ€ μμ
- μ΄λ€ ν΄λμ€λ₯Ό λ§λ€ λ λ€λ₯Έ ν΄λμ€μ κΈ°λ₯μ λ¬Όλ €λ°μ μ μκ² λ§λλ κ²
- class ν΄λμ€ μ΄λ¦(μμν ν΄λμ€ μ΄λ¦)
class FourCal:
def __init__(self, first, second):
self.first = first
self.second = second
def setdata(self, first, second):
self.first = first
self.second = second
def add(self):
result = self.first + self.second
return result
def sub(self):
result = self.first - self.second
return result
def mul(self):
result = self.first * self.second
return result
def div(self):
result = self.first / self.second
return result
class MoreFourCal(FourCal): # FourCalμ μμ
def pow(self):
result = self.first ** self.second
return result
first, second, num = map(int, input().split())
cal = MoreFourCal(first, second)
if num == 1:
res = cal.add()
elif num == 2:
res = cal.sub()
elif num == 3:
res = cal.mul()
else:
res = cal.div()
print(res)
print(cal.pow())
λ©μλ μ€λ²λΌμ΄λ©
- λΆλͺ¨ ν΄λμ€μ μλ λ©μλλ₯Ό λμΌν μ΄λ¦μΌλ‘ λ€μ λ§λλ κ²
- λ©μλλ₯Ό μ€λ²λΌμ΄λ©νλ©΄ λΆλͺ¨ ν΄λμ€μ λ©μλ λμ μ€λ²λΌμ΄λ©ν λ©μλ νΈμΆ
class FourCal:
def __init__(self, first, second):
self.first = first
self.second = second
def setdata(self, first, second):
self.first = first
self.second = second
def add(self):
result = self.first + self.second
return result
def sub(self):
result = self.first - self.second
return result
def mul(self):
result = self.first * self.second
return result
def div(self):
result = self.first / self.second
return result
class MoreFourCal(FourCal):
def pow(self):
result = self.first ** self.second
return result
class SafeFourCal(FourCal):
def div(self): # λ©μλ μ€λ²λΌμ΄λ©
if self.second == 0:
return 0
else:
return self.first / self.second
first, second, num = map(int, input().split())
cal = MoreFourCal(first, second)
if num == 1:
res = cal.add()
elif num == 2:
res = cal.sub()
elif num == 3:
res = cal.mul()
else:
res = cal.div()
print(res)
print(cal.pow())
ν΄λμ€ λ³μ
- ν΄λμ€λ‘ λ§λ λͺ¨λ κ°μ²΄μ 곡μ λ¨.
'π£οΈ > Python' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[Python] μμΈμ²λ¦¬ (0) | 2022.01.21 |
---|---|
[Python] μλ£ν(λ¬Έμμ΄, 리μ€νΈ, νν, λμ λ리, μ§ν©, lambda) / νμΌ μ½κ³ μ°κΈ° (0) | 2022.01.20 |