December 18, 2018
Calculate the factorial n!
Threads: Enter a non-negative integer n, and print out n!
Input: A non-negative integer n.
Output: An integer value of n!
For example:
input: 2 output: 2
You are not logged in? Log in to Submit Now!
6 Comments
Add a Comment
You must be logged in to post a comment.
#include
int main()
{
int n,i;
long long gt=1;
scanf(“%d”,&n);
for(i=1;i<=n;i++){
gt*=i;
}
printf("%d\n",gt);
return 0;
}
sao 20! nó lại ra âm thế mn. Kiểm tra mãi không biết mình sai chỗ nào
:v
định dạng in của bạn sai nhé.
mình sửa lại thành %lld được rồi, tks bạn nha hihi
làm bằng đệ quy sao lại lỗi Runtime Error (NZEC)
vậy AD?
tôi cũng bị vậy :((
ở trong pascal nha anh