factorial

x=input("input...");
fact=1
for k=1:x
fact = k*fact
end
printf("\noutput..%d!=%d\n",x,fact)


ความคิดเห็น