วันอังคารที่ 16 สิงหาคม พ.ศ. 2559

Function Condition and Loop of Python.

def setup():
   print(count_prime(10))
def count_prime(n):
   x = 2
   count = 0
   while(x <= n):
      if(prime(x)):
         count += 1
      x += 1
   return count
def prime(p):
   x = 2
   if (p == 1):
      return False
   while(x < p):
      if(p%x == 0):
         return False
      x += 1
   return True
setup()

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

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

Link Video Presentation Resort Managemant System Project.

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