有需求或技術問題可以隨時跟我連絡 (MSN上線時)

2009年3月27日 星期五

小品: 利用遞迴計算n!階乘

函數:
public double N_step(int N)
{
return N == 1 ? 1 : N * N_step(N - 1);
}
應用:
textBox_Answer.Text = N_step(int.Parse(textBox_Value.Text)).ToString();