long fun(int n)
long fun(int n)
{
int i;
long f = 1;
for(i = 1; i <= n; i++)
f = f*i;
return f;
}
Which of the following statements are correct about this function
A. The function calculates the value of 1 raised to power n
B. The function calculates the factorial value of an integer
C. The function calculates the square root of an integer
D. None of above
Hướng dẫn
Chọn B là đáp án đúng
Xem lời giải
Xem lời giải
Hàm fun() tính giai thừa của n.