Results 1 to 2 of 2

Thread: code นี้รันออกมาแล้วได้ผลอย่างไรครับ

  1. #1
    Senior Member retool2's Avatar
    Join Date
    Aug 2008
    Location
    Under Relocation
    Posts
    178


    Code:
    def D(n): return n and (2*n-1)*D(n-1) or 1
    def N(n): return n and (4*n*n-8*n+3)*N(n-2)+7*D(n-2) or 1
    b=1000000000000; print (N(b*4)*b)/D(b*4)
    รบกวนด้วยครับ

  2. #2


    [code] DWORD D(DWORD n)
    {

Similar Threads

  1. Inventory System Made In VB - Access With Code code
    By stepno01 in forum Visual Basic
    Replies: 0
    Last Post: 01-05-2009, 07:06 PM
  2. [E-BooK] Clean Code - มาทำ code ให้เรียบร้อยกันดีกว่า
    By singha.osot in forum E-Book, Video หรือบทความทั่วไปด้าน Computer
    Replies: 0
    Last Post: 07-12-2008, 07:35 PM
  3. Replies: 1
    Last Post: 09-02-2008, 12:26 AM
  4. Bar Code Pro v6.02
    By oatkung2 in forum Window Application
    Replies: 0
    Last Post: 19-08-2007, 10:15 AM
  5. Code หา image จาก code html มาฝาก
    By sut in forum PHP,ASP,Javascript, Html
    Replies: 1
    Last Post: 02-06-2007, 07:10 PM

Members who have read this thread : 0

Actions : (View-Readers)

There are no names to display.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •