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()
วันอาทิตย์ที่ 8 พฤศจิกายน พ.ศ. 2558
สมัครสมาชิก:
ส่งความคิดเห็น (Atom)
Link Video Presentation Resort Managemant System Project.
Video Presentation Resort Managemant System Project. จัดทำโดย พากษ์เสียง: คุณาสิน ทองมณี 5801012620011 ลำดับภาพ: สุพิชชา ศรีศิริ...
-
- 1NF หรือ Fisrt Normal Form มีเงื่อนไขอยู่ว่า ต้องไม่มีคอลลัมน์ใดในตารางที่มีค่ามากกว่า 1 ค่า หรือที่เรียกว่า Atomic ซึ่งหมายถึง ข้อมูลที่...
-
https://docs.google.com/spreadsheets/d/10Y6o-h8dAAKf7MHTtGvQDBJuzGkAx_X0WYVgj2nB8v0/edit?usp=sharing จากภาพจะเห็นว่า - เก...
ไม่มีความคิดเห็น:
แสดงความคิดเห็น