多种语言求n的阶乘

一 lua

 

function Fact(n)
    
if(n < 0then
        
return 0
    
end
    
    
if(n == 0then
        
return 1
    
else
        
return n * Fact(n-1)
    
end
end

 

二 C++

 

int Fact(int n)
{
    
if (n < 0)
    {
        
return 0;
    }

    
if (n == 0)
    {
        
return 1;
    }
    
else
    {
        
return n * Fact(n-1);
    }
}

 

 

posted @ 2010-05-08 11:05  oayx  阅读(412)  评论(1编辑  收藏  举报