วันพฤหัสบดีที่ 17 กันยายน พ.ศ. 2558

Lab4x : Multiplication Table

def setup():
  multable(1, 12, 5)


def multable(i,row,N):
    mul=0
    while (i<=row):
        mul = N * i
        print(N," x ",i," = ",mul)
        i += 1

setup()

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

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

commit เพิ่มเติม : เพื่ม userstory, bookmark

>>  add userstory ทำการเพิ่ม userstory ใน functional tests >>  add bookmark for user เพิ่มระบบ Bookmark โดยการสร้าง model ขึ...