วันอาทิตย์ที่ 8 พฤศจิกายน พ.ศ. 2558

Fraction.

class Fraction:
   def __init__(self,numer,deno):
      self.numer = numer
      self.deno = deno
   
   def print(self):
      print(self.numer,end="/")
      print(self.deno,end="")
      print()
         
   def add(self,b):
      o = (self.numer*b.deno)+(b.numer*self.deno)
      u = (self.deno*b.deno)
      add = Fraction(o,u)
      return add
   

def setup():
   a = Fraction(5,3)
   b = Fraction(2,-1)
   c = a.add(b)

   a.print()
   b.print()
   c.print()

   assert c.numer == 1 and c.deno == -3
setup()

ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Link Video Presentation Resort Managemant System Project.

Video Presentation Resort Managemant System Project. จัดทำโดย พากษ์เสียง: คุณาสิน  ทองมณี  5801012620011 ลำดับภาพ: สุพิชชา  ศรีศิริ...