Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Hi mọi người, mình có code một chương trình tính giai thừa mà không biết kiệu đây có phải là cách tối ưu nhất hay chưa?
static long tinhGiaithua(int n)
{
int i;
long giai_thua = 1;
if (n == 0 || n == 1)
{
return giai_thua;
}
else
{
for (i = 2; i <= n; i++)
{
giai_thua *= i;
}
return giai_thua;
}
}
Đoạn văn bản này chỉ mang tính chất tham khảo:
- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
- When an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries.
- It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum
Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.
Đăng nhập
Siêu nhân điện quang
đã bình luận
18:20 06-08-2021
Okie